Alex Gartner
06/15/2022, 6:30 PMFernando Barbosa
06/15/2022, 8:32 PMwhere
part of statement. Anyone tryied that already? I want something more or less like this:
where timecolumn <= (current_timestamp - interval '5' minute) as BIGINT * 1000
Roberto
06/16/2022, 4:02 PMFernando Barbosa
06/17/2022, 3:35 PMwhere
. Could you guys please help me with that:
select max(myColumn) max_myColumn
from myTable
where myDateTime >= (now() - cast((9499687)+(1000*60*60) as long))
Tim Berglund
Tim Berglund
Tim Berglund
Tim Berglund
Tim Berglund
Tim Berglund
Tim Berglund
Norman he
06/17/2022, 8:17 PMNorman he
06/17/2022, 8:18 PMchandarasekaran m
06/18/2022, 1:52 PMTanay Karmarkar
06/18/2022, 2:25 PMTim Berglund
Mitchell H
06/20/2022, 3:44 PMHimanshu Rathore
06/21/2022, 5:26 AMManishbatheja
06/21/2022, 6:52 AMVuppala Suresh Kumar
06/21/2022, 8:45 AMYarden Rokach
Mugdha Goel
06/21/2022, 4:52 PM"dateTimeFieldSpecs": [{
"name": "consensus_timestamp",
"dataType": "LONG",
"format" : "1:MILLISECONDS:EPOCH",
"granularity": "1:NANOSECONDS"
}]
Is something like this possible?Alice
06/22/2022, 12:26 AMYarden Rokach
Michael Latta
06/22/2022, 10:31 PMMichael Latta
06/22/2022, 10:32 PMMichael Latta
06/22/2022, 10:48 PMLaxman Ch
06/23/2022, 4:14 AMroutingConfig
.
When partition pruner is enabled, queries are returning the partial results, esp for REALTIME.
As per my understanding, this is not returning the results for CONSUMING segments.
Wanted to check, if this partition pruner can be used for REALTIME tables.
Partial results with:
"routing": {
"segmentPrunerTypes": [
"time",
"partition"
]
},
Full results with:
"routing": {
"segmentPrunerTypes": [
"time"
]
},
Yarden Rokach
Rajan Garg
06/23/2022, 2:39 PM0.9.3
- https://github.com/apache/pinot/blob/master/kubernetes/helm/README.md
The only change I have made is the nodeSelector
in values.yaml file. I am getting errors while using this command for installing helm in K8's cluster
helm install pinot . -f values.yaml -n pinot --set cluster.name=pinot --set server.replicaCount=2
Here are the zookeeper logs:
+ /config-scripts/run
mkdir: cannot create directory '/data/log': No space left on device
/config-scripts/run: line 44: echo: write error: No space left on device
+ exec java -cp '/apache-zookeeper-3.5.5-bin/lib/*:/apache-zookeeper-3.5.5-bin/*jar:/conf:' -Xmx256M -Xms256M org.apache.zookeeper.server.quorum.QuorumPeerMain /conf/zoo.cfg
2022-06-23 09:56:06,224 [myid:] - INFO [main:QuorumPeerConfig@133] - Reading configuration from: /conf/zoo.cfg
2022-06-23 09:56:06,244 [myid:] - INFO [main:QuorumPeerConfig@385] - clientPortAddress is 0.0.0.0/0.0.0.0:2181
2022-06-23 09:56:06,244 [myid:] - INFO [main:QuorumPeerConfig@389] - secureClientPort is not set
2022-06-23 09:56:06,294 [myid:] - ERROR [main:QuorumPeerConfig@645] - Invalid configuration, only one server specified (ignoring)
2022-06-23 09:56:06,307 [myid:] - ERROR [main:QuorumPeerMain@89] - Invalid config, exiting abnormally
org.apache.zookeeper.server.quorum.QuorumPeerConfig$ConfigException: Error processing /conf/zoo.cfg
at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parse(QuorumPeerConfig.java:154)
at org.apache.zookeeper.server.quorum.QuorumPeerMain.initializeAndRun(QuorumPeerMain.java:113)
at org.apache.zookeeper.server.quorum.QuorumPeerMain.main(QuorumPeerMain.java:82)
Caused by: java.lang.IllegalArgumentException: serverid null is not a number
at org.apache.zookeeper.server.quorum.QuorumPeerConfig.setupMyId(QuorumPeerConfig.java:690)
at org.apache.zookeeper.server.quorum.QuorumPeerConfig.setupQuorumPeerConfig(QuorumPeerConfig.java:602)
at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parseProperties(QuorumPeerConfig.java:420)
at org.apache.zookeeper.server.quorum.QuorumPeerConfig.parse(QuorumPeerConfig.java:150)
... 2 more
Invalid config, exiting abnormally
The disk space I am having is 25GB.