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
{{ message }}
This repository was archived by the owner on Oct 29, 2024. It is now read-only.
Operating system version:
$ uname -a
Linux 5.4.0-56-generic Readme improvements #62-Ubuntu SMP Mon Nov 23 19:20:19 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
$ cat /proc/cpuinfo | head -n 10
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 62
model name : Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz
stepping : 4
microcode : 0x42e
cpu MHz : 2190.312
cache size : 15360 KB
SnakeViz profile snippet:
Query made:
SELECT
FIRST(volume) AS volume_start,
FIRST(trade_price) AS trade_price_start,
FIRST(ask_price) AS ask_price_start,
LAST(volume) AS volume_end,
LAST(trade_price) AS trade_price_end,
LAST(ask_price) AS ask_price_end,
LAST(day_change_percentage) AS day_change_percentage
FROM full_market_snapshot
WHERE
time > now() - 48h30m
GROUP BY ticker
Returned dataframe dimensions: [9203 rows x 8 columns]
What can I do to improve the response time? The InfluxDB container uses <10% of the allotted CPU and main memory and storage is SSD with a docker volume mount.
The text was updated successfully, but these errors were encountered:
raokrutarth
changed the title
DataFrame client takes >5s to get a response for 9k rows with 12 columns
DataFrame client takes >50s to get a response for 9k rows with 12 columns
Dec 20, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
$ uname -a
Linux 5.4.0-56-generic Readme improvements #62-Ubuntu SMP Mon Nov 23 19:20:19 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
$ cat /proc/cpuinfo | head -n 10
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 62
model name : Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz
stepping : 4
microcode : 0x42e
cpu MHz : 2190.312
cache size : 15360 KB
SnakeViz profile snippet:

Query made:
Database entries/scale:
Returned dataframe dimensions:
[9203 rows x 8 columns]
What can I do to improve the response time? The InfluxDB container uses <10% of the allotted CPU and main memory and storage is SSD with a docker volume mount.
The text was updated successfully, but these errors were encountered: