Deena Dhayalan
09/15/2022, 10:36 AMselect a.name from table1 as a JOIN table2 as b on a.name=b.name
Ali Atıl
09/16/2022, 12:13 PMTiger Zhao
09/16/2022, 3:32 PMlsof
, Pinot is keeping a large number of deleted segments open still, which might be some memory bug?Luis Fernandez
09/16/2022, 4:58 PMerik bergsten
09/16/2022, 5:06 PMCaught exception while indexing the record: {
"nullValueFields" : [ ],
"fieldToValueMap" : {
"deviceType" : "bar",
"data" : "{\"test\":123}",
"deviceId" : "foo",
"ts" : 1663345155307
}
}
java.lang.NullPointerException: null
at org.apache.pinot.segment.local.indexsegment.mutable.MutableSegmentImpl.index(MutableSegmentImpl.java:515) ~[pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at org.apache.pinot.core.data.manager.realtime.LLRealtimeSegmentDataManager.processStreamEvents(LLRealtimeSegmentDataManager.java:573) [pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at org.apache.pinot.core.data.manager.realtime.LLRealtimeSegmentDataManager.consumeLoop(LLRealtimeSegmentDataManager.java:430) [pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at org.apache.pinot.core.data.manager.realtime.LLRealtimeSegmentDataManager$PartitionConsumer.run(LLRealtimeSegmentDataManager.java:623) [pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at java.lang.Thread.run(Thread.java:829) [?:?]
Using the following table config: https://pastebin.com/uXnyVSfx
data schema: https://pastebin.com/yvLCa1cd
Just changing the upsertConfig to null everything works. Any ideas?Nagendra Gautham Gondi
09/16/2022, 6:30 PM{
"code": 500,
"error": "org.apache.pinot.shaded.software.amazon.awssdk.services.kinesis.model.ResourceNotFoundException: Stream cross-account-stream under account xxxxxxxx8241 not found. (Service: Kinesis, Status Code: 400, Request ID: c3ed6e9c-d25b-dccd-9873-aee2d3c8f651, Extended Request ID: 0/0WUQm7Y1TiHJj0Xr207jlzuDDZw8iv9NyFrUHvHz5WH8kRxc6xNO0lZDxOCgzy8HyBAOzHrxW8F0097tbWUqOp0fTnCJRw)"
}
YAML File:
apiVersion: v1
kind: ConfigMap
metadata:
name: examples
namespace: pinot-quickstart
data:
CROSS_ACCESS_KEY_ID: "sample_key"
CROSS_SECRET_ACCESS_KEY: "sample_secret_key"
CROSS_SESSION_TOKEN: "sample_session_token"
crossAccountEvents_realtime_table_config.json: |-
{
"tableName": "crossAccountEvents",
"tableType": "REALTIME",
"segmentsConfig": {
"timeColumnName": "timeStampField",
"retentionTimeUnit": "DAYS",
"retentionTimeValue": "60",
"schemaName": "crossAccountEvents",
"replication": "1",
"replicasPerPartition": "1"
},
"tenants": {},
"tableIndexConfig": {
"loadMode": "MMAP",
"invertedIndexColumns": [
],
"streamConfigs": {
"streamType": "kinesis",
"stream.kinesis.consumer.type": "lowlevel",
"stream.kinesis.topic.name": "cross-account-stream",
"stream.kinesis.decoder.class.name": "org.apache.pinot.plugin.inputformat.json.JSONMessageDecoder",
"stream.kinesis.consumer.factory.class.name": "org.apache.pinot.plugin.stream.kinesis.KinesisConsumerFactory",
"realtime.segment.flush.threshold.time": "12h",
"realtime.segment.flush.threshold.size": "100000",
"stream.kinesis.consumer.prop.auto.offset.reset": "smallest",
"region": "us-east-1",
"shardIteratorType": "TRIM_HORIZON"
}
},
"metadata": {
"customConfigs": {}
}
}
crossAccountEvents_schema.json: |-
{
"schemaName": "crossAccountEvents",
"dimensionFieldSpecs": [
{
"name":"requestId",
"dataType": "STRING",
"defaultNullValue": ""
},
{
"name": "accountId",
"dataType": "STRING",
"defaultNullValue": ""
},
{
"name": "data",
"dataType": "STRING",
"defaultNullValue": ""
}
],
"dateTimeFieldSpecs": [
{
"name": "timeStampField",
"dataType": "TIMESTAMP",
"format": "1:MILLISECONDS:TIMESTAMP",
"granularity": "1:MILLISECONDS"
}
]
}
---
apiVersion: batch/v1
kind: Job
metadata:
name: cross-account-events-table-creation
namespace: pinot-quickstart
spec:
template:
spec:
containers:
- name: cross-account-events-table-creation-json
image: apachepinot/pinot:latest
args: [ "AddTable", "-schemaFile", "/var/pinot/examples/crossAccountEvents_schema.json", "-tableConfigFile", "/var/pinot/examples/crossAccountEvents_realtime_table_config.json", "-controllerHost", "pinot-controller", "-controllerPort", "9000", "-exec" ]
env:
- name: JAVA_OPTS
value: "-Xms4G -Xmx4G -Dpinot.admin.system.exit=true"
- name: AWS_ACCESS_KEY_ID
valueFrom:
configMapKeyRef:
key: CROSS_ACCESS_KEY_ID
name: examples
- name: AWS_SECRET_ACCESS_KEY
valueFrom:
configMapKeyRef:
key: CROSS_SECRET_ACCESS_KEY
name: examples
- name: AWS_SESSION_TOKEN
valueFrom:
configMapKeyRef:
key: CROSS_SESSION_TOKEN
name: examples
volumeMounts:
- name: examples
mountPath: /var/pinot/examples
restartPolicy: OnFailure
volumes:
- name: examples
configMap:
name: examples
backoffLimit: 100
Can you please help me in resolving this error?Huaqiang He
09/19/2022, 1:42 PM"timestamp" between 1662946380000 and 1662946440000
and gets 985 items.
query 2 uses a very close condition add("timestamp", latency) between 1662946380000 and 1662946440000
and also gets 985 items. (latency
is non negative)
query 3 tries to combine the two conditions together ("timestamp" between 1662946380000 and 1662946440000 or add("timestamp", latency) between 1662946380000 and 1662946440000)
, but the result shows 18253149 items. I expect the result is between 985 and 985+985.
1. select count("*") from api_requests where "timestamp" between 1662946380000 and 1662946440000 and entity_id='8a3688f4-6390-0e77-0163-d010adc10427'
count(*)
985
2. select count(*) from api_requests where add("timestamp", latency) between 1662946380000 and 1662946440000 and entity_id='8a3688f4-6390-0e77-0163-d010adc10427'
count(*)
985
3. select count("*") from api_requests where ("timestamp" between 1662946380000 and 1662946440000 or add("timestamp", latency) between 1662946380000 and 1662946440000) and entity_id='8a3688f4-6390-0e77-0163-d010adc10427'
count(*)
18253149
Deena Dhayalan
09/19/2022, 5:08 PMSep 19, 2022 10:28:47 PM org.glassfish.grizzly.http.server.NetworkListener start
INFO: Started listener bound to [0.0.0.0:8097]
Sep 19, 2022 10:28:47 PM org.glassfish.grizzly.http.server.HttpServer start
INFO: [HttpServer] Started.
2022/09/19 22:28:49.770 ERROR [StartServiceManagerCommand] [Start a Pinot [SERVER]] Failed to start a Pinot [SERVER] at 6.81 since launch
java.lang.RuntimeException: java.lang.RuntimeException: java.io.IOException: Failed to bind to address 0.0.0.0/0.0.0.0:8442
at org.apache.pinot.server.worker.WorkerQueryServer.start(WorkerQueryServer.java:94) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.server.starter.ServerInstance.startQueryServer(ServerInstance.java:211) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.server.starter.helix.BaseServerStarter.start(BaseServerStarter.java:576) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.tools.service.PinotServiceManager.startServer(PinotServiceManager.java:167) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.tools.service.PinotServiceManager.startRole(PinotServiceManager.java:97) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.lambda$run$0(StartServiceManagerCommand.java:278) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.tools.admin.command.StartServiceManagerCommand.startPinotService(StartServiceManagerCommand.java:304) [pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.tools.admin.command.StartServiceManagerCommand$1.run(StartServiceManagerCommand.java:278) [pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
Caused by: java.lang.RuntimeException: java.io.IOException: Failed to bind to address 0.0.0.0/0.0.0.0:8442
at org.apache.pinot.query.mailbox.channel.GrpcMailboxServer.start(GrpcMailboxServer.java:62) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.mailbox.channel.ChannelManager.init(ChannelManager.java:50) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.mailbox.GrpcMailboxService.start(GrpcMailboxService.java:65) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.runtime.QueryRunner.start(QueryRunner.java:90) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.service.QueryServer.start(QueryServer.java:64) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.server.worker.WorkerQueryServer.start(WorkerQueryServer.java:92) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
... 7 more
Caused by: java.io.IOException: Failed to bind to address 0.0.0.0/0.0.0.0:8442
at io.grpc.netty.shaded.io.grpc.netty.NettyServer.start(NettyServer.java:328) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at io.grpc.internal.ServerImpl.start(ServerImpl.java:183) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at io.grpc.internal.ServerImpl.start(ServerImpl.java:92) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.mailbox.channel.GrpcMailboxServer.start(GrpcMailboxServer.java:60) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.mailbox.channel.ChannelManager.init(ChannelManager.java:50) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.mailbox.GrpcMailboxService.start(GrpcMailboxService.java:65) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.runtime.QueryRunner.start(QueryRunner.java:90) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.query.service.QueryServer.start(QueryServer.java:64) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
at org.apache.pinot.server.worker.WorkerQueryServer.start(WorkerQueryServer.java:92) ~[pinot-all-0.12.0-SNAPSHOT-jar-with-dependencies.jar:0.12.0-SNAPSHOT-2d6665b8e5fa0842ef67b3d9896c5e04ecad78e9]
... 7 more
Caused by: io.grpc.netty.shaded.io.netty.channel.unix.Errors$NativeIoException: bind(..) failed: Address already in use
Alice
09/20/2022, 10:46 AMCaused by: org.apache.lucene.queryparser.classic.ParseException: Encountered "<EOF>" at line 1, column 53.
Was expecting one of:
<NOT> ...
"+" ...
"-" ...
<BAREOPER> ...
"(" ...
"*" ...
<QUOTED> ...
<TERM> ...
<PREFIXTERM> ...
<WILDTERM> ...
<REGEXPTERM> ...
"[" ...
"{" ...
<NUMBER> ...
at org.apache.lucene.queryparser.classic.QueryParser.generateParseException(QueryParser.java:931) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
at org.apache.lucene.queryparser.classic.QueryParser.jj_consume_token(QueryParser.java:813) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
at org.apache.lucene.queryparser.classic.QueryParser.Query(QueryParser.java:252) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
at org.apache.lucene.queryparser.classic.QueryParser.TopLevelQuery(QueryParser.java:215) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
at org.apache.lucene.queryparser.classic.QueryParserBase.parse(QueryParserBase.java:109) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
at org.apache.pinot.segment.local.realtime.impl.invertedindex.RealtimeLuceneTextIndex.getDocIds(RealtimeLuceneTextIndex.java:106) ~[pinot-all-0.11.0-SNAPSHOT-jar-with-dependencies.jar:0.11.0-SNAPSHOT-3efcf3f00eaa6883eee62a111eee334fc330b72c]
... 30 more
abhinav wagle
09/20/2022, 7:58 PM-
. Our field value includes the -
. Whats the right way to escape it. For example :
TEXT_MATCH(active_exp_map, '/.*9DtZjvh\-R/') - returns nothing.
vs
TEXT_MATCH(active_exp_map, '/.*9DtZjvh/') - returns data
Lars-Kristian Svenøy
09/20/2022, 8:50 PMQuery 20220920_202500_00441_6rt9p failed: Only 0 out of 0 servers responded for query select
This seems like a bug in the connector to me, any ideas?Josh Clum
09/20/2022, 9:25 PMNagendra Gautham Gondi
09/20/2022, 9:56 PMAli Atıl
09/21/2022, 6:47 AMselect lon,lat from mytable where ST_DISTANCE(location_st_point, ST_Point(-122, 37, 1)) < 5000 limit 1000Exception:
[
{
"message": "SQLParsingError\njava.lang.RuntimeException Error composing query plan for: select lon,lat from mytable where ST_DISTANCE(location_st_point, ST_Point(-122, 37, 1)) < 5000 limit 1000\n\tat org.apache.pinot.query.QueryEnvironment.planQuery(QueryEnvironment.java:131)\n\tat org.apache.pinot.broker.requesthandler.MultiStageBrokerRequestHandler.handleRequest(MultiStageBrokerRequestHandler.java:147)\n\tat org.apache.pinot.broker.requesthandler.MultiStageBrokerRequestHandler.handleRequest(MultiStageBrokerRequestHandler.java:125)\n\tat org.apache.pinot.broker.requesthandler.BrokerRequestHandler.handleRequest(BrokerRequestHandler.java:47)\n...\nCaused by: org.apache.calcite.runtime.CalciteContextException: From line 1, column 88 to line 1, column 108: No match found for function signature ST_Point(<NUMERIC>, <NUMERIC>, <NUMERIC>)\n\tat java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n\tat java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n\tat java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n\tat java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)\n...\nCaused by: org.apache.calcite.sql.validate.SqlValidatorException: No match found for function signature ST_Point(<NUMERIC>, <NUMERIC>, <NUMERIC>)\n\tat java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n\tat java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)\n\tat java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)\n\tat java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:490)",
"errorCode": 150
}
]
Bobby Richard
09/21/2022, 5:39 PMTanmesh Mishra
09/22/2022, 12:51 AMremote: Permission to pinot-contrib/pinot-docs.git denied to tanmesh.
fatal: unable to access '<https://github.com/pinot-contrib/pinot-docs.git/>': The requested URL returned error: 403
Do I need any read/ write permission ? Will really appreciate any suggestion resolving this issue.sunny
09/22/2022, 6:30 AM1. Create Pinot Partitioned Table (kafka topic partition = 3)
- Query Successed.
2. Add kafka partition to a topic (3->4)
- New consuming segment(3__0) is created in pinot.
3. Add kafka topic data to a new partition.
- Query Successed (select * from)
- But, the row is not shown in the query ( select * from where in)
- The row is visible only when the segment is completed. However, the data coming into the new consuming segment(3__1) doesn't look the same as before.
It may happen that kafka partitions are increased during operation. So Please check the issue. 😊abhinav wagle
09/22/2022, 5:29 PMLuis Fernandez
09/22/2022, 6:49 PMTanmesh Mishra
09/22/2022, 11:42 PMEric Asuncion
09/23/2022, 1:52 AMTommaso Peresson
09/23/2022, 10:00 AMpinot-gcs
doesn't support proxies and currently my spark workers can't connect to gcs. I've already tried to set
-Dhttps.proxyHost -Dhttps.proxyPort
but they affect only the driver. ThanksStuart Millholland
09/23/2022, 1:40 PMStuart Millholland
09/23/2022, 7:13 PMStuart Millholland
09/23/2022, 7:13 PMsome stuff
outputDirURI: '<gs://blah/data/immutable_events>'
includeFileNamePattern: "glob:**/*1661990400000*"
Gerrit van Doorn
09/23/2022, 8:56 PM2022/09/23 20:53:11.493 WARN [ClientCnxn] [main-SendThread(localhost:2185)] Session 0x3e3d835c1a2346f7 for server localhost/127.0.0.1:2185, unexpected error, closing socket connection and attempting reconnect
java.io.IOException: Connection reset by peer
at sun.nio.ch.FileDispatcherImpl.read0(Native Method) ~[?:?]
at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:39) ~[?:?]
at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:276) ~[?:?]
at sun.nio.ch.IOUtil.read(IOUtil.java:233) ~[?:?]
at sun.nio.ch.IOUtil.read(IOUtil.java:223) ~[?:?]
at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:356) ~[?:?]
at org.apache.zookeeper.ClientCnxnSocketNIO.doIO(ClientCnxnSocketNIO.java:75) ~[pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at org.apache.zookeeper.ClientCnxnSocketNIO.doTransport(ClientCnxnSocketNIO.java:363) ~[pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
at org.apache.zookeeper.ClientCnxn$SendThread.run(ClientCnxn.java:1223) [pinot-all-0.11.0-jar-with-dependencies.jar:0.11.0-1b4d6b6b0a27422c1552ea1a936ad145056f7033]
2022/09/23 20:53:11.594 INFO [ZkClient] [main-EventThread] zkclient 5, zookeeper state changed ( Disconnected )
2022/09/23 20:53:12.441 INFO [ControllerResponseFilter] [grizzly-http-server-22] Handled request from 127.0.0.1 GET <http://localhost:9000/health>, content-type null status code 503 Service Unavailable
What could be the reason for this?Neeraja Sridharan
09/26/2022, 7:35 PMoffline tables in Pinot
with invertedIndexColumns, sortedColumn and segmentPartition (with Murmur based partitions) enabled. We also have instanceSelectorType as "replicaGroup".
We've currently setup createInvertedIndexDuringSegmentGeneration
flag to false
by default.
Is there a recommended approach to set this flag to true
and also, what is the expected behavior?
Will it be beneficial to enable it to minimize index creation after segments are loaded onto servers?
Appreciate any help regarding this 🙇♀️Piyush Mittal
09/27/2022, 9:52 AMTommaso Peresson
09/27/2022, 1:02 PM"custom.map": "{\"input.data.file.uri\":\"hdfs://***\"}",
and instead I would want to have something like "custom.map": "{\"input.data.file.uri\":\"gs://***\"}",
so that the segment fetcher would know where to get the data from. Do you know if it's possible to do what I'm asking? ThanksMohit Garg4628
09/27/2022, 1:14 PM