Hello Everyone, I am trying to move data from REAL...
# troubleshooting
a
Hello Everyone, I am trying to move data from REALTIME to OFFLINE table after schema evolution. I have added a new column age of type INT and since I did not provide any value it is reflecting 0 in the real-time table , but when the task RealtimeToOfflineSegmentsTask is getting executed in minion console it is throwing exception "INFO": "org.apache.avro.file.DataFileWriter$AppendWriteException: java.lang.NullPointerException: null of int in field age of record" if anyone has any idea regarding the same , please do share
m
@Jackie ^^
j
@Arpita Bajpai Can you please try with the latest master, or wait for the new release which should be available soon? This
null
handling issue is a known issue and should have been fixed
a
Hi @Jackie, I am trying with the latest master , I am able to run the default cluster with command bin/quick-start-batch.sh but when I am trying to run my own cluster, I am able to start the zookeeper , but am getting error while running below service manager command: bin/pinot-admin.sh StartServiceManager -zkAddress localhost:2181 -clusterName pinot-quickstart -port -1 -bootstrapConfigPaths ${PINOT_DIR}/config/pinot-controller.conf ${PINOT_DIR}/config/pinot-broker.conf ${PINOT_DIR}/config/pinot-server.conf The error is: Error: option "-clusterName" cannot be used with the option(s) [-bootstrapConfigPaths, -bootstrapServices] Although I have been able to run my own cluster previously, but it is showing error with latest master. any idea regarding the same?
j
@Xiang Fu ^^
x
just do below
Copy code
bin/pinot-admin.sh StartServiceManager -bootstrapConfigPaths conf/pinot-controller.conf conf/pinot-broker.conf conf/pinot-server.conf
a
ok