dromerosm commited on
Commit
c815950
·
1 Parent(s): 5827878

Implement code changes to enhance functionality and improve performance

Browse files
Files changed (2) hide show
  1. api/index.py +7 -4
  2. logs/api.log +619 -0
api/index.py CHANGED
@@ -500,12 +500,15 @@ class YFinanceService:
500
  # Start timing for database operations
501
  db_start_time = time.perf_counter()
502
 
503
- # Clear all existing ticker data
504
- self.logger.info("database_clear_started operation=delete_all_ticker_data")
505
  clear_start = time.perf_counter()
506
- await session.execute(delete(TickerData))
 
 
 
507
  clear_end = time.perf_counter()
508
- self.logger.info(f"database_clear_completed duration_ms={(clear_end - clear_start)*1000:.2f}")
509
 
510
  # Prepare data for bulk insert
511
  current_time = datetime.now(pytz.UTC)
 
500
  # Start timing for database operations
501
  db_start_time = time.perf_counter()
502
 
503
+ # Clear all existing ticker data using TRUNCATE for speed
504
+ self.logger.info("database_clear_started operation=truncate_ticker_data")
505
  clear_start = time.perf_counter()
506
+ from sqlalchemy import text
507
+ # Use TRUNCATE for faster clearing and avoid long-running DELETE
508
+ await session.execute(text("TRUNCATE TABLE ticker_data"))
509
+ await session.commit() # commit immediately to reset the connection
510
  clear_end = time.perf_counter()
511
+ self.logger.info(f"database_truncate_completed duration_ms={(clear_end - clear_start)*1000:.2f}")
512
 
513
  # Prepare data for bulk insert
514
  current_time = datetime.now(pytz.UTC)
logs/api.log CHANGED
@@ -772,3 +772,622 @@
772
  2025-07-30 20:46:05 [INFO] watchfiles.main: 1 change detected
773
  2025-07-30 20:46:05 [INFO] watchfiles.main: 1 change detected
774
  2025-07-30 20:46:06 [INFO] index: database_lifecycle event=connections_closed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
772
  2025-07-30 20:46:05 [INFO] watchfiles.main: 1 change detected
773
  2025-07-30 20:46:05 [INFO] watchfiles.main: 1 change detected
774
  2025-07-30 20:46:06 [INFO] index: database_lifecycle event=connections_closed
775
+ 2025-07-30 21:03:43 [INFO] __main__: logging_configured level=INFO hf_spaces=False
776
+ 2025-07-30 21:03:43 [INFO] __mp_main__: logging_configured level=INFO hf_spaces=False
777
+ 2025-07-30 21:03:43 [INFO] index: logging_configured level=INFO hf_spaces=False
778
+ 2025-07-30 21:03:43 [INFO] watchfiles.main: 4 changes detected
779
+ 2025-07-30 21:03:44 [INFO] index: database_lifecycle event=tables_created_verified
780
+ 2025-07-30 21:03:46 [INFO] watchfiles.main: 2 changes detected
781
+ 2025-07-30 21:03:48 [INFO] watchfiles.main: 4 changes detected
782
+ 2025-07-30 21:03:52 [INFO] watchfiles.main: 2 changes detected
783
+ 2025-07-30 21:03:58 [INFO] watchfiles.main: 2 changes detected
784
+ 2025-07-30 21:03:59 [INFO] watchfiles.main: 1 change detected
785
+ 2025-07-30 21:04:00 [INFO] watchfiles.main: 1 change detected
786
+ 2025-07-30 21:04:02 [INFO] watchfiles.main: 2 changes detected
787
+ 2025-07-30 21:04:04 [INFO] watchfiles.main: 1 change detected
788
+ 2025-07-30 21:04:05 [INFO] watchfiles.main: 1 change detected
789
+ 2025-07-30 21:04:09 [INFO] watchfiles.main: 2 changes detected
790
+ 2025-07-30 21:04:13 [INFO] watchfiles.main: 2 changes detected
791
+ 2025-07-30 21:04:14 [INFO] watchfiles.main: 1 change detected
792
+ 2025-07-30 21:04:14 [INFO] index: ticker_freshness_check last_update=2025-07-30T15:35:47+00:00 is_fresh=True
793
+ 2025-07-30 21:04:14 [INFO] index: bulk_refresh_strategy_selected reason=stale_data age_limit=24h
794
+ 2025-07-30 21:04:14 [INFO] index: bulk_refresh_started tickers_count=517 operation=clear_and_insert
795
+ 2025-07-30 21:04:14 [INFO] watchfiles.main: 1 change detected
796
+ 2025-07-30 21:04:15 [INFO] watchfiles.main: 1 change detected
797
+ 2025-07-30 21:04:16 [INFO] watchfiles.main: 2 changes detected
798
+ 2025-07-30 21:04:19 [INFO] watchfiles.main: 1 change detected
799
+ 2025-07-30 21:04:22 [INFO] watchfiles.main: 2 changes detected
800
+ 2025-07-30 21:04:25 [ERROR] yfinance:
801
+ 2 Failed downloads:
802
+ 2025-07-30 21:04:25 [ERROR] yfinance: ['BF.B']: YFPricesMissingError('possibly delisted; no price data found (period=3mo)')
803
+ 2025-07-30 21:04:25 [ERROR] yfinance: ['BRK.B']: YFPricesMissingError('possibly delisted; no price data found (period=3mo) (Yahoo error = "No data found, symbol may be delisted")')
804
+ 2025-07-30 21:04:25 [INFO] index: data_download_completed tickers_count=517 duration_ms=10494.90
805
+ 2025-07-30 21:04:25 [INFO] index: database_clear_started operation=truncate_ticker_data
806
+ 2025-07-30 21:04:25 [INFO] index: database_truncate_completed duration_ms=157.83
807
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=2.46
808
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.79
809
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.54
810
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.52
811
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.55
812
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.43
813
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.44
814
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.36
815
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.35
816
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.48
817
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.36
818
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.35
819
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.33
820
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.31
821
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.29
822
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.29
823
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.31
824
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.29
825
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
826
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.31
827
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
828
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
829
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.30
830
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
831
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.30
832
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
833
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
834
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
835
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.34
836
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
837
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
838
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
839
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
840
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
841
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
842
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
843
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
844
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
845
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
846
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
847
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
848
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
849
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
850
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.48
851
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
852
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
853
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
854
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
855
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
856
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
857
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
858
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
859
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
860
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
861
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
862
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
863
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
864
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
865
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
866
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
867
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
868
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
869
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
870
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
871
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
872
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
873
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
874
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
875
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
876
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
877
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
878
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
879
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
880
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
881
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
882
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
883
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
884
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
885
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
886
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
887
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
888
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
889
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
890
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
891
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
892
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.30
893
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
894
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
895
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.29
896
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
897
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
898
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
899
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
900
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
901
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
902
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
903
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
904
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
905
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
906
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
907
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
908
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
909
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.30
910
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
911
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
912
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
913
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
914
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
915
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
916
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
917
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
918
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
919
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
920
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
921
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
922
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
923
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
924
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
925
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
926
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
927
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
928
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
929
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
930
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
931
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
932
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
933
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
934
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
935
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
936
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
937
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
938
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
939
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
940
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
941
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
942
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
943
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
944
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
945
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
946
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
947
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
948
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
949
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
950
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.49
951
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
952
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
953
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
954
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
955
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
956
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
957
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
958
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
959
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
960
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
961
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
962
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
963
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
964
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
965
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
966
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
967
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
968
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
969
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
970
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
971
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
972
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
973
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
974
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
975
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
976
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
977
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
978
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
979
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
980
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
981
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
982
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
983
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
984
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
985
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
986
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
987
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
988
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
989
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
990
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
991
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
992
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
993
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
994
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
995
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
996
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
997
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
998
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
999
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1000
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1001
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1002
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1003
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1004
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1005
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1006
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1007
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1008
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1009
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1010
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1011
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1012
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1013
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1014
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1015
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1016
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1017
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1018
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1019
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1020
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1021
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1022
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1023
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1024
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1025
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1026
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1027
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1028
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1029
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1030
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1031
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1032
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1033
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1034
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1035
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1036
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1037
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1038
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1039
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1040
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1041
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1042
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1043
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1044
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1045
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1046
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1047
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1048
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1049
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1050
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1051
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1052
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1053
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1054
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1055
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1056
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1057
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1058
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1059
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
1060
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1061
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1062
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1063
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1064
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1065
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1066
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1067
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1068
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1069
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1070
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1071
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1072
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1073
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1074
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1075
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1076
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1077
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1078
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1079
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1080
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1081
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1082
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1083
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1084
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1085
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1086
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1087
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1088
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1089
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1090
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1091
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1092
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1093
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1094
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1095
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1096
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1097
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1098
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1099
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1100
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1101
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1102
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1103
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1104
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1105
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1106
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1107
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1108
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1109
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1110
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1111
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1112
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1113
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1114
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.74
1115
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.75
1116
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.77
1117
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.75
1118
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.37
1119
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.40
1120
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
1121
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.29
1122
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.64
1123
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
1124
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1125
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1126
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1127
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1128
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1129
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1130
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1131
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1132
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.33
1133
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1134
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1135
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1136
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1137
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
1138
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1139
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1140
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1141
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1142
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1143
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1144
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1145
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1146
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1147
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1148
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1149
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1150
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
1151
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1152
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1153
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1154
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1155
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1156
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1157
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1158
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1159
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1160
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1161
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1162
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1163
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1164
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1165
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1166
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1167
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1168
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1169
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1170
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1171
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1172
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1173
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1174
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1175
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1176
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1177
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1178
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1179
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1180
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1181
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1182
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1183
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1184
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1185
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1186
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1187
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1188
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1189
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1190
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.31
1191
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.30
1192
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1193
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1194
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1195
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1196
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1197
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1198
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1199
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1200
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1201
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1202
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1203
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1204
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1205
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1206
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1207
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1208
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1209
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1210
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1211
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1212
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1213
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1214
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1215
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1216
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1217
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1218
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1219
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1220
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1221
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1222
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1223
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1224
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1225
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1226
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1227
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1228
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1229
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1230
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1231
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
1232
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.31
1233
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1234
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1235
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1236
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
1237
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1238
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1239
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1240
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1241
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1242
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
1243
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1244
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1245
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1246
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1247
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
1248
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1249
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1250
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1251
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1252
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1253
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1254
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1255
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1256
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.32
1257
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1258
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1259
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1260
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1261
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1262
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1263
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1264
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1265
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1266
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1267
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1268
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1269
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.27
1270
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1271
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1272
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1273
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1274
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1275
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1276
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
1277
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1278
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1279
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1280
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1281
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1282
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.25
1283
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1284
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1285
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.28
1286
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1287
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.20
1288
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1289
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1290
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1291
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1292
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1293
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1294
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1295
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.26
1296
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1297
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1298
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1299
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1300
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1301
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1302
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1303
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1304
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1305
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1306
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1307
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1308
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1309
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1310
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1311
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1312
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1313
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1314
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.22
1315
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1316
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1317
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.24
1318
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1319
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1320
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1321
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.23
1322
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.32
1323
+ 2025-07-30 21:04:25 [INFO] index: technical_indicators_calculated records=63 duration_ms=0.21
1324
+ 2025-07-30 21:04:25 [INFO] index: database_insert_started total_records=32445 chunk_size=1000
1325
+ 2025-07-30 21:04:25 [INFO] index: database_chunk_inserted chunk=1/33 records=1000 duration_ms=7.66
1326
+ 2025-07-30 21:04:25 [INFO] index: database_chunk_inserted chunk=2/33 records=1000 duration_ms=8.05
1327
+ 2025-07-30 21:04:25 [INFO] index: database_chunk_inserted chunk=3/33 records=1000 duration_ms=7.73
1328
+ 2025-07-30 21:04:25 [INFO] index: database_chunk_inserted chunk=4/33 records=1000 duration_ms=7.79
1329
+ 2025-07-30 21:04:25 [INFO] index: database_chunk_inserted chunk=5/33 records=1000 duration_ms=7.59
1330
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=6/33 records=1000 duration_ms=31.84
1331
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=7/33 records=1000 duration_ms=7.81
1332
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=8/33 records=1000 duration_ms=7.85
1333
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=9/33 records=1000 duration_ms=7.62
1334
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=10/33 records=1000 duration_ms=7.88
1335
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=11/33 records=1000 duration_ms=7.56
1336
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=12/33 records=1000 duration_ms=7.76
1337
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=13/33 records=1000 duration_ms=7.59
1338
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=14/33 records=1000 duration_ms=7.84
1339
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=15/33 records=1000 duration_ms=7.60
1340
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=16/33 records=1000 duration_ms=7.86
1341
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=17/33 records=1000 duration_ms=7.63
1342
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=18/33 records=1000 duration_ms=39.19
1343
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=19/33 records=1000 duration_ms=7.89
1344
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=20/33 records=1000 duration_ms=7.70
1345
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=21/33 records=1000 duration_ms=7.82
1346
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=22/33 records=1000 duration_ms=7.90
1347
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=23/33 records=1000 duration_ms=7.76
1348
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=24/33 records=1000 duration_ms=7.76
1349
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=25/33 records=1000 duration_ms=7.73
1350
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=26/33 records=1000 duration_ms=7.65
1351
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=27/33 records=1000 duration_ms=7.76
1352
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=28/33 records=1000 duration_ms=7.69
1353
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=29/33 records=1000 duration_ms=7.79
1354
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=30/33 records=1000 duration_ms=41.16
1355
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=31/33 records=1000 duration_ms=7.77
1356
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=32/33 records=1000 duration_ms=7.68
1357
+ 2025-07-30 21:04:26 [INFO] index: database_chunk_inserted chunk=33/33 records=445 duration_ms=3.61
1358
+ 2025-07-30 21:04:27 [INFO] watchfiles.main: 2 changes detected
1359
+ 2025-07-30 21:04:30 [INFO] index: database_commit_completed duration_ms=4001.96
1360
+ 2025-07-30 21:04:30 [INFO] index: database_operations_completed records_inserted=32445 duration_ms=5185.70
1361
+ 2025-07-30 21:04:30 [INFO] index: bulk_refresh_completed total_duration_ms=15680.83 download_ms=10494.90 database_ms=5185.70
1362
+ 2025-07-30 21:04:30 [INFO] index: bulk_refresh_summary records_inserted=32445 operation=completed
1363
+ 2025-07-30 21:04:30 [INFO] watchfiles.main: 1 change detected
1364
+ 2025-07-30 21:04:30 [INFO] watchfiles.main: 1 change detected
1365
+ 2025-07-30 21:04:32 [INFO] watchfiles.main: 2 changes detected
1366
+ 2025-07-30 21:04:36 [INFO] watchfiles.main: 1 change detected
1367
+ 2025-07-30 21:04:38 [INFO] watchfiles.main: 2 changes detected
1368
+ 2025-07-30 21:04:43 [INFO] watchfiles.main: 2 changes detected
1369
+ 2025-07-30 21:04:45 [INFO] watchfiles.main: 1 change detected
1370
+ 2025-07-30 21:04:45 [INFO] watchfiles.main: 1 change detected
1371
+ 2025-07-30 21:04:47 [INFO] watchfiles.main: 2 changes detected
1372
+ 2025-07-30 21:04:50 [INFO] watchfiles.main: 1 change detected
1373
+ 2025-07-30 21:04:51 [INFO] watchfiles.main: 1 change detected
1374
+ 2025-07-30 21:04:53 [INFO] watchfiles.main: 2 changes detected
1375
+ 2025-07-30 21:04:58 [INFO] watchfiles.main: 2 changes detected
1376
+ 2025-07-30 21:05:01 [INFO] watchfiles.main: 1 change detected
1377
+ 2025-07-30 21:05:01 [INFO] watchfiles.main: 1 change detected
1378
+ 2025-07-30 21:05:04 [INFO] watchfiles.main: 2 changes detected
1379
+ 2025-07-30 21:05:06 [INFO] watchfiles.main: 1 change detected
1380
+ 2025-07-30 21:05:09 [INFO] watchfiles.main: 2 changes detected
1381
+ 2025-07-30 21:05:14 [INFO] watchfiles.main: 2 changes detected
1382
+ 2025-07-30 21:05:16 [INFO] watchfiles.main: 1 change detected
1383
+ 2025-07-30 21:05:16 [INFO] watchfiles.main: 1 change detected
1384
+ 2025-07-30 21:05:19 [INFO] watchfiles.main: 2 changes detected
1385
+ 2025-07-30 21:05:22 [INFO] watchfiles.main: 1 change detected
1386
+ 2025-07-30 21:05:25 [INFO] watchfiles.main: 2 changes detected
1387
+ 2025-07-30 21:05:30 [INFO] watchfiles.main: 2 changes detected
1388
+ 2025-07-30 21:05:32 [INFO] watchfiles.main: 1 change detected
1389
+ 2025-07-30 21:05:33 [INFO] watchfiles.main: 1 change detected
1390
+ 2025-07-30 21:05:35 [INFO] watchfiles.main: 2 changes detected
1391
+ 2025-07-30 21:05:37 [INFO] watchfiles.main: 1 change detected
1392
+ 2025-07-30 21:05:38 [INFO] watchfiles.main: 1 change detected
1393
+ 2025-07-30 21:05:39 [INFO] index: database_lifecycle event=connections_closed