Priyank Bagrecha
Priyank Bagrecha
Change the first line in BusinessEventMessages.proto from `syntax = "proto2";` to `syntax = "proto3";`. That tells protoc to compile a generated class for proto3. Please note that there are some...
> Do you have the server connected to the cluster when you delete the segments? Yes I tried waiting but I don't see any files getting deleted even after a...
@xiangfu0 can you please have a look? thank you!
@rflynn any update on this?
> how did you change the retention period? @walterddr i didn't change / add the retention period on the table. basically there is no retention config for the table. i...
I invoked delete all segments api call via swagger ``` curl -X DELETE "https:///segments/students?type=OFFLINE&retention=0d" -H "accept: application/json" ``` This is what i see in the logs ``` 2022-11-15 16:59:43 |...
I think I know what is happening https://github.com/apache/pinot/blob/c9a6e5207a6cedf325f4abaeac2970077ab5685d/pinot-server/src/main/java/org/apache/pinot/server/starter/helix/HelixInstanceDataManager.java#L241 ``` // Clean up the segment data on default tier unconditionally. File segmentDir = getSegmentDataDirectory(tableNameWithType, segmentName); if (segmentDir.exists()) { FileUtils.deleteQuietly(segmentDir); LOGGER.info("Deleted segment...
this is our helm chart config for server ``` server: name: server replicaCount: 15 updateStrategy: type: RollingUpdate podManagementPolicy: Parallel podSecurityContext: {} securityContext: {} probes: endpoint: "/health" livenessEnabled: false readinessEnabled: false...
I tried reproducing it locally by running Quickstart from with in IDE and I am not able to reproduce the issue. ``` C02TW0TMHTDG:~ pbagrecha$ cd /var/folders/l9/69q0947d2yb9g5wl6hsxbbnmd4s6w1/T/1668642652045/quickstart/ C02TW0TMHTDG:quickstart pbagrecha$ ls -lh...
i found what caused it, and am able to fix it. i don't know why it causes the issue though. we have `dataDir` and `segmentTarDir` but then we also have...