You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I searched in the issues and found nothing similar.
Read release policy
I understand that unsupported versions don't get bug fixes. I will attempt to reproduce the issue on a supported version of Pulsar client and Pulsar broker.
Version
OS: Windows
Docker Image: apachepulsar/pulsar:4.0.1
Minimal reproduce step
Solr sink indexing is empty after PostgreSQL CDC changes
Postgresql Setup:
ALTER SYSTEM SET wal_level = 'logical';
CREATE TABLE IF NOT EXISTS shortlists (
id SERIAL,
user_id INTEGER,
profile_id INTEGER,
CONSTRAINT unique_shortlist UNIQUE(user_id, profile_id)
);
CREATE PUBLICATION pulsar_pub FOR TABLE shortlists;
ALTER TABLE public.shortlists REPLICA IDENTITY FULL;
FROM apachepulsar/pulsar:4.0.1
USER root
RUN mkdir connectors
RUN mkdir functions
COPY --chown=pulsar:pulsar ./connectors ./connectors
COPY --chown=pulsar:pulsar ./config ./conf
CMD ["bin/pulsar", "standalone"]
USER pulsar
EXPOSE 8080
Search before asking
Read release policy
Version
OS: Windows
Docker Image: apachepulsar/pulsar:4.0.1
Minimal reproduce step
Solr sink indexing is empty after PostgreSQL CDC changes
Postgresql Setup:
Solr Schema
Docker Image
Postgresql CDC Source:
Register Source
bin/pulsar-admin source create --source-config-file $PWD/conf/postgresql-cdc.yaml
Solr Sink:
Register Sink
bin/pulsar-admin sinks create --sink-config-file $PWD/conf/solr-sink-shortlists.yaml
Verify CDC
bin/pulsar-client consume -s "sub-shortlists" public/default/dbserver.public.shortlists-n 0
Output
What did you expect to see?
When I execute solr query getting empty record
Request:
Response:
What did you see instead?
Expected Result should be
Anything else?
No response
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: