Significant-Gravitas / AutoGPT

AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
https://agpt.co
MIT License
166.72k stars 44.1k forks source link

Redis in Docker Compose Error 111 Connection Closed #3442

Closed remriel closed 1 year ago

remriel commented 1 year ago

⚠️ Search for existing issues first ⚠️

Which Operating System are you using?

Windows

Which version of Auto-GPT are you using?

Latest Release

GPT-3 or GPT-4?

GPT-3.5

Steps to reproduce 🕹

There must be a step missing in the docker compose setup because the steps provided do not work. I've tried on three different Windows computers and I get the same issue every time.

docker-compose build --no-cache auto-gpt docker-compose run --rm auto-gpt --gpt3only --continuous

It will start to run, then crash with "Connection refused"

I tried to do some research on this, and read it has to do with the way Docker handles networking inside containers? I've never used Docker so can someone more knowledgeable explain?

I tried deleting the hosts file I tried setting redis 127.0.0.1 in the hosts file

Tried adding this in the docker compose file: ports:

version: "3.9"

services: auto-gpt: depends_on:

Current behavior 😯

Crashes with error

redis.exceptions.ConnectionError: Error 111 connecting to redis:6379. Connection refused.

Expected behavior 🤔

No response

Your prompt 📝

ai_goals:
- Scrape Earnings Whisper for today's earnings reports for companies over 50 billion
  market cap and compile the data into a structured format for analysis.
- Use OpenAI API to generate detailed analyses of each earnings report, including
  financial metrics, sentiment analysis, and trend analysis.
- Develop a web interface that displays the data in an intuitive and visually appealing
  manner, allowing users to sort by sector, compare companies in the same sector,
  and generate company trajectory based on data.
- Continuously monitor and update the data to ensure accuracy and relevance.
- Provide users with the ability to export the data in various formats for further
  analysis and use.
ai_name: EarningsGPT
ai_role: an AI assistant that automates the process of scraping Earnings Whisper for
  today's earnings reports for companies over 50 billion market cap, then uses OpenAI
  API to create detailed analyses of each earnings report, including a web interface
  with visualizations of data, sorting by sector, comparing companies in the same
  sector, and generating company trajectory based on data.
api_budget: 0.0

Your Logs 📒

Continuous Mode:  ENABLED
WARNING:  Continuous mode is not recommended. It is potentially dangerous and may cause your AI to run forever or carry out actions you would not usually authorise. Use at your own risk.
GPT3.5 Only Mode:  ENABLED
Welcome back!  Would you like me to return to being EarningsGPT?
Asking user via keyboard...
Continue with the last settings?
Name:  EarningsGPT
Role:  an AI assistant that automates the process of scraping Earnings Whisper for today's earnings reports for companies over 50 billion market cap, then uses OpenAI API to create detailed analyses of each earnings report, including a web interface with visualizations of data, sorting by sector, comparing companies in the same sector, and generating company trajectory based on data.
Goals: ["Scrape Earnings Whisper for today's earnings reports for companies over 50 billion market cap and compile the data into a structured format for analysis.", 'Use OpenAI API to generate detailed analyses of each earnings report, including financial metrics, sentiment analysis, and trend analysis.', 'Develop a web interface that displays the data in an intuitive and visually appealing manner, allowing users to sort by sector, compare companies in the same sector, and generate company trajectory based on data.', 'Continuously monitor and update the data to ensure accuracy and relevance.', 'Provide users with the ability to export the data in various formats for further analysis and use.']
API Budget: infinite
Continue (y/n):
EarningsGPT  has been created with the following details:
Name:  EarningsGPT
Role:  an AI assistant that automates the process of scraping Earnings Whisper for today's earnings reports for companies over 50 billion market cap, then uses OpenAI API to create detailed analyses of each earnings report, including a web interface with visualizations of data, sorting by sector, comparing companies in the same sector, and generating company trajectory based on data.
Goals:
-  Scrape Earnings Whisper for today's earnings reports for companies over 50 billion market cap and compile the data into a structured format for analysis.
-  Use OpenAI API to generate detailed analyses of each earnings report, including financial metrics, sentiment analysis, and trend analysis.
-  Develop a web interface that displays the data in an intuitive and visually appealing manner, allowing users to sort by sector, compare companies in the same sector, and generate company trajectory based on data.
-  Continuously monitor and update the data to ensure accuracy and relevance.
-  Provide users with the ability to export the data in various formats for further analysis and use.
Using memory of type:  RedisMemory
Using Browser:  chrome
 THOUGHTS:  I will start by scraping Earnings Whisper for today's earnings reports for companies over 50 billion market cap and compile the data into a structured format for analysis.
REASONING:  This is the first step towards achieving the goal of generating detailed analyses of each earnings report.
PLAN:
-  Scrape Earnings Whisper for today's earnings reports for companies over 50 billion market cap
-  Compile the data into a structured format for analysis
CRITICISM:  I need to ensure that the data is accurate and relevant, and that it is properly formatted for analysis.
NEXT ACTION:  COMMAND = execute_python_file ARGUMENTS = {'filename': '/app/autogpt/auto_gpt_workspace/scrape_earnings_whisper.py'}
Executing file '/app/autogpt/auto_gpt_workspace/scrape_earnings_whisper.py'
SYSTEM:  Command execute_python_file returned: Error: File '/app/autogpt/auto_gpt_workspace/scrape_earnings_whisper.py' does not exist.
Error calling Redis search:  Connection closed by server.
Traceback (most recent call last):
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 698, in connect
    sock = self.retry.call_with_retry(
  File "/usr/local/lib/python3.10/site-packages/redis/retry.py", line 46, in call_with_retry
    return do()
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 699, in <lambda>
    lambda: self._connect(), lambda error: self.disconnect(error)
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 987, in _connect
    raise err
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 975, in _connect
    sock.connect(socket_address)
ConnectionRefusedError: [Errno 111] Connection refused

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.10/runpy.py", line 196, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/local/lib/python3.10/runpy.py", line 86, in _run_code
    exec(code, run_globals)
  File "/app/autogpt/__main__.py", line 5, in <module>
    autogpt.cli.main()
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1130, in __call__
    return self.main(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1055, in main
    rv = self.invoke(ctx)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1635, in invoke
    rv = super().invoke(ctx)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 1404, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/usr/local/lib/python3.10/site-packages/click/core.py", line 760, in invoke
    return __callback(*args, **kwargs)
  File "/usr/local/lib/python3.10/site-packages/click/decorators.py", line 26, in new_func
    return f(get_current_context(), *args, **kwargs)
  File "/app/autogpt/cli.py", line 90, in main
    run_auto_gpt(
  File "/app/autogpt/main.py", line 150, in run_auto_gpt
    agent.start_interaction_loop()
  File "/app/autogpt/agent/agent.py", line 94, in start_interaction_loop
    assistant_reply = chat_with_ai(
  File "/app/autogpt/chat.py", line 96, in chat_with_ai
    logger.debug(f"Memory Stats: {permanent_memory.get_stats()}")
  File "/app/autogpt/memory/redismem.py", line 156, in get_stats
    return self.redis.ft(f"{self.cfg.memory_index}").info()
  File "/usr/local/lib/python3.10/site-packages/redis/commands/search/commands.py", line 370, in info
    res = self.execute_command(INFO_CMD, self.index_name)
  File "/usr/local/lib/python3.10/site-packages/redis/client.py", line 1255, in execute_command
    conn = self.connection or pool.get_connection(command_name, **options)
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 1442, in get_connection
    connection.connect()
  File "/usr/local/lib/python3.10/site-packages/redis/connection.py", line 704, in connect
    raise ConnectionError(self._error_message(e))
redis.exceptions.ConnectionError: Error 111 connecting to redis:6379. Connection refused.

=== REDIS BUG REPORT START: Cut & paste starting from here ===
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.199 # Redis 6.2.12 crashed by signal: 4, si_code: 2
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.199 # Crashed running the instruction at: 0x7f766643ec5d
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ STACK TRACE ------
2023-04-27 17:43:03 EIP:
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(_Z35FP32_InnerProductSIMD16Ext_SSE_implPKvS0_m+0xd)[0x7f766643ec5d]
2023-04-27 17:43:03 
2023-04-27 17:43:03 Backtrace:
2023-04-27 17:43:03 /lib/x86_64-linux-gnu/libpthread.so.0(+0x14420)[0x7f76670bc420]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(invalidFunctionWasCalled+0x0)[0x5594a634e490]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(_Z30FP32_InnerProductSIMD16Ext_SSEPKvS0_m+0xd)[0x7f766643eced]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(_ZN9HNSWIndexIffE9topKQueryEPKvmP17VecSimQueryParams+0x14c)[0x7f7666430c6c]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(VecSimIndex_TopKQuery+0x18)[0x7f76664079d8]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(+0xd7d68)[0x7f7666381d68]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(+0x1048c0)[0x7f76663ae8c0]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(+0x104c39)[0x7f76663aec39]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(+0x1051f7)[0x7f76663af1f7]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(+0x104cba)[0x7f76663aecba]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(sendChunk+0xa6)[0x7f766634f906]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(AREQ_Execute+0x1d)[0x7f766635005d]
2023-04-27 17:43:03 /opt/redis-stack/lib/redisearch.so(RSSearchCommand+0xec)[0x7f766635086c]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(RedisModuleCommandDispatcher+0x67)[0x5594a6389417]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(call+0xf0)[0x5594a62fa940]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(processCommand+0x643)[0x5594a62fc643]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(processCommandAndResetClient+0x20)[0x5594a630fd20]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(processInputBuffer+0xea)[0x5594a631267a]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(+0x1018ac)[0x5594a63ab8ac]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(aeProcessEvents+0x2ca)[0x5594a62f2e6a]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(aeMain+0x1d)[0x5594a62f30fd]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(main+0x33a)[0x5594a62ef50a]
2023-04-27 17:43:03 /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0x7f7666eda083]
2023-04-27 17:43:03 /opt/redis-stack/bin/redis-server *:6379(_start+0x2e)[0x5594a62efa0e]
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ REGISTERS ------
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # 
2023-04-27 17:43:03 RAX:00007fff970f0be0 RBX:0000000000000600
2023-04-27 17:43:03 RCX:00007f7666a5f238 RDX:0000000000000600
2023-04-27 17:43:03 RDI:00007fff970ef3e0 RSI:00007f7659bb6d94
2023-04-27 17:43:03 RBP:00007fff970f0c60 RSP:00007fff970ef3c8
2023-04-27 17:43:03 R8 :0000000000000000 R9 :00007f7666a5f2b8
2023-04-27 17:43:03 R10:00007f7666eb07f0 R11:00007fff970f0bd0
2023-04-27 17:43:03 R12:00007fff970ef3e0 R13:00007fff970ef3e0
2023-04-27 17:43:03 R14:00007fff970ef3e0 R15:00007f7666b7f1c8
2023-04-27 17:43:03 RIP:00007f766643ec5d EFL:0000000000010287
2023-04-27 17:43:03 CSGSFS:002b000000000033
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d7) -> 3be9c5adbbea2043
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d6) -> b9b2929cbce586ac
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d5) -> 3c969e7e3c9515f6
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d4) -> bc29f667bbecf4ee
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d3) -> bc44dac53c4443cc
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d2) -> bb83fbbfbbf3ea69
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d1) -> 3b394bb3bd09a516
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3d0) -> 3c82ebff3b325638
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3cf) -> bd3493ebbcee7d76
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3ce) -> bc0e3eadbc7005fd
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3cd) -> 3c5069d7bcb1dd71
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3cc) -> bb11aa51bbc0412e
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3cb) -> 3c8b0f6cbd24a7a6
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3ca) -> 00007f7666430c6c
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3c9) -> 0000000000000000
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.201 # (00007fff970ef3c8) -> 00007f766643eced
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ INFO OUTPUT ------
2023-04-27 17:43:03 # Server
2023-04-27 17:43:03 redis_version:6.2.12
2023-04-27 17:43:03 redis_git_sha1:00000000
2023-04-27 17:43:03 redis_git_dirty:0
2023-04-27 17:43:03 redis_build_id:4dbc2487343b0024
2023-04-27 17:43:03 redis_mode:standalone
2023-04-27 17:43:03 os:Linux 5.10.102.1-microsoft-standard-WSL2 x86_64
2023-04-27 17:43:03 arch_bits:64
2023-04-27 17:43:03 monotonic_clock:POSIX clock_gettime
2023-04-27 17:43:03 multiplexing_api:epoll
2023-04-27 17:43:03 atomicvar_api:c11-builtin
2023-04-27 17:43:03 gcc_version:9.4.0
2023-04-27 17:43:03 process_id:8
2023-04-27 17:43:03 process_supervised:no
2023-04-27 17:43:03 run_id:db40aa85e3a2ba3ac9265b71d3cbbc679cfd695e
2023-04-27 17:43:03 tcp_port:6379
2023-04-27 17:43:03 server_time_usec:1682642583198081
2023-04-27 17:43:03 uptime_in_seconds:31
2023-04-27 17:43:03 uptime_in_days:0
2023-04-27 17:43:03 hz:10
2023-04-27 17:43:03 configured_hz:10
2023-04-27 17:43:03 lru_clock:4920983
2023-04-27 17:43:03 executable:/opt/redis-stack/bin/redis-server
2023-04-27 17:43:03 config_file:
2023-04-27 17:43:03 io_threads_active:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Clients
2023-04-27 17:43:03 connected_clients:1
2023-04-27 17:43:03 cluster_connections:0
2023-04-27 17:43:03 maxclients:10000
2023-04-27 17:43:03 client_recent_max_input_buffer:24
2023-04-27 17:43:03 client_recent_max_output_buffer:0
2023-04-27 17:43:03 blocked_clients:0
2023-04-27 17:43:03 tracking_clients:0
2023-04-27 17:43:03 clients_in_timeout_table:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Memory
2023-04-27 17:43:03 used_memory:8719960
2023-04-27 17:43:03 used_memory_human:8.32M
2023-04-27 17:43:03 used_memory_rss:23261184
2023-04-27 17:43:03 used_memory_rss_human:22.18M
2023-04-27 17:43:03 used_memory_peak:8719960
2023-04-27 17:43:03 used_memory_peak_human:8.32M
2023-04-27 17:43:03 used_memory_peak_perc:100.22%
2023-04-27 17:43:03 used_memory_overhead:1035168
2023-04-27 17:43:03 used_memory_startup:1014560
2023-04-27 17:43:03 used_memory_dataset:7684792
2023-04-27 17:43:03 used_memory_dataset_perc:99.73%
2023-04-27 17:43:03 allocator_allocated:9292080
2023-04-27 17:43:03 allocator_active:9588736
2023-04-27 17:43:03 allocator_resident:12468224
2023-04-27 17:43:03 total_system_memory:13385105408
2023-04-27 17:43:03 total_system_memory_human:12.47G
2023-04-27 17:43:03 used_memory_lua:30720
2023-04-27 17:43:03 used_memory_lua_human:30.00K
2023-04-27 17:43:03 used_memory_scripts:0
2023-04-27 17:43:03 used_memory_scripts_human:0B
2023-04-27 17:43:03 number_of_cached_scripts:0
2023-04-27 17:43:03 maxmemory:0
2023-04-27 17:43:03 maxmemory_human:0B
2023-04-27 17:43:03 maxmemory_policy:noeviction
2023-04-27 17:43:03 allocator_frag_ratio:1.03
2023-04-27 17:43:03 allocator_frag_bytes:296656
2023-04-27 17:43:03 allocator_rss_ratio:1.30
2023-04-27 17:43:03 allocator_rss_bytes:2879488
2023-04-27 17:43:03 rss_overhead_ratio:1.87
2023-04-27 17:43:03 rss_overhead_bytes:10792960
2023-04-27 17:43:03 mem_fragmentation_ratio:2.69
2023-04-27 17:43:03 mem_fragmentation_bytes:14609848
2023-04-27 17:43:03 mem_not_counted_for_evict:0
2023-04-27 17:43:03 mem_replication_backlog:0
2023-04-27 17:43:03 mem_clients_slaves:0
2023-04-27 17:43:03 mem_clients_normal:20496
2023-04-27 17:43:03 mem_aof_buffer:0
2023-04-27 17:43:03 mem_allocator:jemalloc-5.1.0
2023-04-27 17:43:03 active_defrag_running:0
2023-04-27 17:43:03 lazyfree_pending_objects:0
2023-04-27 17:43:03 lazyfreed_objects:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Persistence
2023-04-27 17:43:03 loading:0
2023-04-27 17:43:03 current_cow_size:0
2023-04-27 17:43:03 current_cow_size_age:0
2023-04-27 17:43:03 current_fork_perc:0.00
2023-04-27 17:43:03 current_save_keys_processed:0
2023-04-27 17:43:03 current_save_keys_total:0
2023-04-27 17:43:03 rdb_changes_since_last_save:6
2023-04-27 17:43:03 rdb_bgsave_in_progress:0
2023-04-27 17:43:03 rdb_last_save_time:1682642564
2023-04-27 17:43:03 rdb_last_bgsave_status:ok
2023-04-27 17:43:03 rdb_last_bgsave_time_sec:-1
2023-04-27 17:43:03 rdb_current_bgsave_time_sec:-1
2023-04-27 17:43:03 rdb_last_cow_size:0
2023-04-27 17:43:03 aof_enabled:0
2023-04-27 17:43:03 aof_rewrite_in_progress:0
2023-04-27 17:43:03 aof_rewrite_scheduled:0
2023-04-27 17:43:03 aof_last_rewrite_time_sec:-1
2023-04-27 17:43:03 aof_current_rewrite_time_sec:-1
2023-04-27 17:43:03 aof_last_bgrewrite_status:ok
2023-04-27 17:43:03 aof_last_write_status:ok
2023-04-27 17:43:03 aof_last_cow_size:0
2023-04-27 17:43:03 module_fork_in_progress:0
2023-04-27 17:43:03 module_fork_last_cow_size:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Stats
2023-04-27 17:43:03 total_connections_received:1
2023-04-27 17:43:03 total_commands_processed:11
2023-04-27 17:43:03 instantaneous_ops_per_sec:2
2023-04-27 17:43:03 total_net_input_bytes:14230
2023-04-27 17:43:03 total_net_output_bytes:1281
2023-04-27 17:43:03 instantaneous_input_kbps:4.50
2023-04-27 17:43:03 instantaneous_output_kbps:0.02
2023-04-27 17:43:03 rejected_connections:0
2023-04-27 17:43:03 sync_full:0
2023-04-27 17:43:03 sync_partial_ok:0
2023-04-27 17:43:03 sync_partial_err:0
2023-04-27 17:43:03 expired_keys:0
2023-04-27 17:43:03 expired_stale_perc:0.00
2023-04-27 17:43:03 expired_time_cap_reached_count:0
2023-04-27 17:43:03 expire_cycle_cpu_milliseconds:0
2023-04-27 17:43:03 evicted_keys:0
2023-04-27 17:43:03 keyspace_hits:1
2023-04-27 17:43:03 keyspace_misses:1
2023-04-27 17:43:03 pubsub_channels:0
2023-04-27 17:43:03 pubsub_patterns:0
2023-04-27 17:43:03 latest_fork_usec:0
2023-04-27 17:43:03 total_forks:0
2023-04-27 17:43:03 migrate_cached_sockets:0
2023-04-27 17:43:03 slave_expires_tracked_keys:0
2023-04-27 17:43:03 active_defrag_hits:0
2023-04-27 17:43:03 active_defrag_misses:0
2023-04-27 17:43:03 active_defrag_key_hits:0
2023-04-27 17:43:03 active_defrag_key_misses:0
2023-04-27 17:43:03 tracking_total_keys:0
2023-04-27 17:43:03 tracking_total_items:0
2023-04-27 17:43:03 tracking_total_prefixes:0
2023-04-27 17:43:03 unexpected_error_replies:0
2023-04-27 17:43:03 total_error_replies:0
2023-04-27 17:43:03 dump_payload_sanitizations:0
2023-04-27 17:43:03 total_reads_processed:9
2023-04-27 17:43:03 total_writes_processed:7
2023-04-27 17:43:03 io_threaded_reads_processed:0
2023-04-27 17:43:03 io_threaded_writes_processed:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Replication
2023-04-27 17:43:03 role:master
2023-04-27 17:43:03 connected_slaves:0
2023-04-27 17:43:03 master_failover_state:no-failover
2023-04-27 17:43:03 master_replid:ac75942f707c7e43f1a278aa17ab0b4481f64594
2023-04-27 17:43:03 master_replid2:0000000000000000000000000000000000000000
2023-04-27 17:43:03 master_repl_offset:0
2023-04-27 17:43:03 second_repl_offset:-1
2023-04-27 17:43:03 repl_backlog_active:0
2023-04-27 17:43:03 repl_backlog_size:1048576
2023-04-27 17:43:03 repl_backlog_first_byte_offset:0
2023-04-27 17:43:03 repl_backlog_histlen:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # CPU
2023-04-27 17:43:03 used_cpu_sys:0.055870
2023-04-27 17:43:03 used_cpu_user:0.055870
2023-04-27 17:43:03 used_cpu_sys_children:0.000000
2023-04-27 17:43:03 used_cpu_user_children:0.000000
2023-04-27 17:43:03 used_cpu_sys_main_thread:0.053656
2023-04-27 17:43:03 used_cpu_user_main_thread:0.053656
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Modules
2023-04-27 17:43:03 module:name=graph,ver=21010,api=1,filters=0,usedby=[],using=[ReJSON],options=[]
2023-04-27 17:43:03 module:name=search,ver=20609,api=1,filters=0,usedby=[],using=[ReJSON],options=[handle-io-errors]
2023-04-27 17:43:03 module:name=ReJSON,ver=20407,api=1,filters=0,usedby=[search|graph],using=[],options=[handle-io-errors]
2023-04-27 17:43:03 module:name=timeseries,ver=10810,api=1,filters=0,usedby=[],using=[],options=[handle-io-errors]
2023-04-27 17:43:03 module:name=bf,ver=20405,api=1,filters=0,usedby=[],using=[],options=[]
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Commandstats
2023-04-27 17:43:03 cmdstat_info:calls=2,usec=73,usec_per_call=36.50,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_exec:calls=1,usec=777,usec_per_call=777.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_set:calls=1,usec=14,usec_per_call=14.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_get:calls=1,usec=4,usec_per_call=4.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_multi:calls=1,usec=5,usec_per_call=5.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_FT.CREATE:calls=1,usec=392,usec_per_call=392.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_FT.INFO:calls=1,usec=105,usec_per_call=105.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_flushall:calls=1,usec=8925,usec_per_call=8925.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_ping:calls=1,usec=3,usec_per_call=3.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 cmdstat_hset:calls=1,usec=753,usec_per_call=753.00,rejected_calls=0,failed_calls=0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Errorstats
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Cluster
2023-04-27 17:43:03 cluster_enabled:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # Keyspace
2023-04-27 17:43:03 db0:keys=2,expires=0,avg_ttl=0
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ CLIENT LIST OUTPUT ------
2023-04-27 17:43:03 id=11 addr=172.21.0.3:57862 laddr=172.21.0.2:6379 fd=12 name= age=19 idle=0 flags=N db=0 sub=0 psub=0 multi=-1 qbuf=6146 qbuf-free=34808 argv-mem=6279 obl=0 oll=0 omem=0 tot-mem=67879 events=r cmd=FT.SEARCH user=default redir=-1
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ CURRENT CLIENT INFO ------
2023-04-27 17:43:03 id=11 addr=172.21.0.3:57862 laddr=172.21.0.2:6379 fd=12 name= age=19 idle=0 flags=N db=0 sub=0 psub=0 multi=-1 qbuf=6146 qbuf-free=34808 argv-mem=6279 obl=0 oll=0 omem=0 tot-mem=67879 events=r cmd=FT.SEARCH user=default redir=-1
2023-04-27 17:43:03 argv[0]: 'FT.SEARCH'
2023-04-27 17:43:03 argv[1]: 'auto-gpt'
2023-04-27 17:43:03 argv[2]: '*=>[KNN 5 @embedding $vector AS vector_score]'
2023-04-27 17:43:03 argv[3]: 'RETURN'
2023-04-27 17:43:03 argv[4]: '2'
2023-04-27 17:43:03 argv[5]: 'data'
2023-04-27 17:43:03 argv[6]: 'vector_score'
2023-04-27 17:43:03 argv[7]: 'SORTBY'
2023-04-27 17:43:03 argv[8]: 'vector_score'
2023-04-27 17:43:03 argv[9]: 'ASC'
2023-04-27 17:43:03 argv[10]: 'DIALECT'
2023-04-27 17:43:03 argv[11]: '2'
2023-04-27 17:43:03 argv[12]: 'LIMIT'
2023-04-27 17:43:03 argv[13]: '0'
2023-04-27 17:43:03 argv[14]: '10'
2023-04-27 17:43:03 argv[15]: 'params'
2023-04-27 17:43:03 argv[16]: '2'
2023-04-27 17:43:03 argv[17]: 'vector'
2023-04-27 17:43:03 argv[18]: '��$�l�<.A��Q��qݱ��iP<�p��>�v}����4�8V2;���<�     ��K9;i��������CD<��D�����g�)���<~��<��弜���C 껭��;B��;A�{�����G<)E��[����[�O��;�%���=��d<2�L;a�<F�ƻ�P*��l&�\F_<�[
                                                      ;c
                                                        3�]���>5�<���;���<H�    ���Ļb����T<��.<[�=�     �k�L<��<^=��Y��;*��<��� �>�;O,  ;�e�;;%=   䤻��%�M$<�\%=�X6����:���;����;0�;<�j��⢻�y��1�2<�%�<`l��S�:��<D��M��k�L<����k<�'
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ MODULES INFO OUTPUT ------
2023-04-27 17:43:03 # graph_executing commands
2023-04-27 17:43:03 
2023-04-27 17:43:03 # search_version
2023-04-27 17:43:03 search_version:2.6.9
2023-04-27 17:43:03 search_redis_version:6.2.12 - oss
2023-04-27 17:43:03 
2023-04-27 17:43:03 # search_index
2023-04-27 17:43:03 search_number_of_indexes:1
2023-04-27 17:43:03 
2023-04-27 17:43:03 # search_fields_statistics
2023-04-27 17:43:03 search_fields_text:Text=1
2023-04-27 17:43:03 search_fields_vector:Vector=1,HSNW=1
2023-04-27 17:43:03 
2023-04-27 17:43:03 # search_dialect_statistics
2023-04-27 17:43:03 search_dialect_1:0
2023-04-27 17:43:03 search_dialect_2:1
2023-04-27 17:43:03 search_dialect_3:0
2023-04-27 17:43:03 
2023-04-27 17:43:03 # search_runtime_configurations
2023-04-27 17:43:03 search_concurrent_mode:OFF
2023-04-27 17:43:03 search_enableGC:ON
2023-04-27 17:43:03 search_minimal_term_prefix:2
2023-04-27 17:43:03 search_maximal_prefix_expansions:200
2023-04-27 17:43:03 search_query_timeout_ms:500
2023-04-27 17:43:03 search_timeout_policy:return
2023-04-27 17:43:03 search_cursor_read_size:1000
2023-04-27 17:43:03 search_cursor_max_idle_time:300000
2023-04-27 17:43:03 search_max_doc_table_size:1000000
2023-04-27 17:43:03 search_max_search_results:10000
2023-04-27 17:43:03 search_max_aggregate_results:10000
2023-04-27 17:43:03 search_search_pool_size:20
2023-04-27 17:43:03 search_index_pool_size:8
2023-04-27 17:43:03 search_gc_scan_size:100
2023-04-27 17:43:03 search_min_phonetic_term_length:3
2023-04-27 17:43:03 
2023-04-27 17:43:03 # ReJSON_trace
2023-04-27 17:43:03 ReJSON_trace:   0: redis_module::base_info_func
2023-04-27 17:43:03    1: rejson::__info_func
2023-04-27 17:43:03    2: modulesCollectInfo
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/module.c:7100:9
2023-04-27 17:43:03    3: logModulesInfo
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/debug.c:1624:22
2023-04-27 17:43:03    4: printCrashReport
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/debug.c:1896:5
2023-04-27 17:43:03    5: sigsegvHandler
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/debug.c:1878:5
2023-04-27 17:43:03    6: <unknown>
2023-04-27 17:43:03    7: _Z35FP32_InnerProductSIMD16Ext_SSE_implPKvS0_m
2023-04-27 17:43:03    8: _Z30FP32_InnerProductSIMD16Ext_SSEPKvS0_m
2023-04-27 17:43:03    9: _ZN9HNSWIndexIffE9topKQueryEPKvmP17VecSimQueryParams
2023-04-27 17:43:03   10: VecSimIndex_TopKQuery
2023-04-27 17:43:03   11: HR_ReadKnnUnsorted
2023-04-27 17:43:03   12: rpidxNext
2023-04-27 17:43:03   13: rpMetricsNext
2023-04-27 17:43:03   14: rpsortNext_Accum
2023-04-27 17:43:03   15: rploaderNext
2023-04-27 17:43:03   16: sendChunk
2023-04-27 17:43:03   17: AREQ_Execute
2023-04-27 17:43:03   18: RSSearchCommand
2023-04-27 17:43:03   19: RedisModuleCommandDispatcher
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/module.c:695:5
2023-04-27 17:43:03   20: call
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/server.c:3750:5
2023-04-27 17:43:03   21: processCommand
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/server.c:4297:9
2023-04-27 17:43:03   22: processCommandAndResetClient
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/networking.c:2105:9
2023-04-27 17:43:03   23: processInputBuffer
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/networking.c:2206:17
2023-04-27 17:43:03   24: callHandler
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/connhelpers.h:79:18
2023-04-27 17:43:03       connSocketEventHandler
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/connection.c:295:14
2023-04-27 17:43:03   25: aeProcessEvents
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/ae.c:427:17
2023-04-27 17:43:03   26: aeMain
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/ae.c:487:9
2023-04-27 17:43:03   27: main
2023-04-27 17:43:03              at /__w/redis-stack/redis-stack/redis/src/server.c:6474:5
2023-04-27 17:43:03   28: __libc_start_main
2023-04-27 17:43:03   29: _start
2023-04-27 17:43:03 
2023-04-27 17:43:03 
2023-04-27 17:43:03 ------ FAST MEMORY TEST ------
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.219 # Bio thread for job type #0 terminated
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.220 # Bio thread for job type #1 terminated
2023-04-27 17:43:03 8:M 28 Apr 2023 00:43:03.220 # Bio thread for job type #2 terminated
2023-04-27 17:43:03 *** Preparing to test memory region 5594a64c3000 (2281472 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 5594a68b8000 (405504 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76581cc000 (10485760 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7659bb6000 (11010048 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765a637000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765ae38000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765b639000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765be3a000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765c8f6000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765d0f7000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765d986000 (4096 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765d988000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765e189000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765e98a000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765f18b000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f765f98c000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f766018d000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f766098e000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f766118f000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7661990000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7662191000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7662992000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7663193000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76650c3000 (12288 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76650c7000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76658c8000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76662a7000 (12288 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76665fd000 (12288 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7666600000 (8388608 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f7666eb0000 (24576 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76670a4000 (16384 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76670c7000 (16384 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f766739e000 (16384 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f766758a000 (8192 bytes)
2023-04-27 17:43:03 *** Preparing to test memory region 7f76675bd000 (4096 bytes)
2023-04-27 17:43:04 .O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O
2023-04-27 17:43:04 Fast memory test PASSED, however your memory can still be broken. Please run a memory test for several hours if possible.
2023-04-27 17:43:04 
2023-04-27 17:43:04 ------ DUMPING CODE AROUND EIP ------
2023-04-27 17:43:04 Symbol: _Z35FP32_InnerProductSIMD16Ext_SSE_implPKvS0_m (base: 0x7f766643ec50)
2023-04-27 17:43:04 Module: /opt/redis-stack/lib/redisearch.so (base 0x7f76662aa000)
2023-04-27 17:43:04 $ xxd -r -p /tmp/dump.hex /tmp/dump.bin
2023-04-27 17:43:04 $ objdump --adjust-vma=0x7f766643ec50 -D -b binary -m i386:x86-64 /tmp/dump.bin
2023-04-27 17:43:04 ------
2023-04-27 17:43:04 8:M 28 Apr 2023 00:43:04.340 # dump of function (hexdump of 141 bytes):
2023-04-27 17:43:04 f30f1efa488d04974839c77373c5f057c90f1f8000000000c5f8101fc5e059064883c7404883c640c5f81067d0c5f8106fe0c5f81056f0c5f858c1c5d8594ed0c5f858c1c5d0594ee0c5f858c1c5f8104ff0c5f059cac5f058c84839f877b9c5f0c6c155c5fa58c1c5f015d1c5fa58d2c5f0c6c1ffc5ea58c0c3660f1f440000c5f857c0c366662e0f1f840000
2023-04-27 17:43:04 
2023-04-27 17:43:04 === REDIS BUG REPORT END. Make sure to include from START to END. ===
ChristopherLenz commented 1 year ago

I have the same problem

------ CLIENT LIST OUTPUT ------

id=40 addr=192.168.96.3:35734 laddr=192.168.96.2:6379 fd=12 name= age=102 idle=0 flags=x db=0 sub=0 psub=0 multi=2 qbuf=6203 qbuf-free=34751 argv-mem=4 obl=26 oll=0 omem=0 tot-mem=61492 events=r cmd=exec user=default redir=-1

------ CURRENT CLIENT INFO ------

id=40 addr=192.168.96.3:35734 laddr=192.168.96.2:6379 fd=12 name= age=102 idle=0 flags=x db=0 sub=0 psub=0 multi=2 qbuf=6203 qbuf-free=34751 argv-mem=4 obl=26 oll=0 omem=0 tot-mem=61492 events=r cmd=exec user=default redir=-1

argv[0]: 'HSET'

argv[1]: 'auto-gpt:1'

argv[2]: 'data'

argv[3]: 'Source: https://www.europeanbestdestinations.com/best-of-europe/european-best-destinations-2021/

Content summary part#1: The text does not provide a specific list of top destinations in Europe for 2021. However, it does offer various categories of destinations such as city breaks, beaches, skiing, romance, nature, shopping, gastronomy, and culture, with numerous options listed under each category. The website also provides information on flights, hotels, tours, and activities in European destinations.'

argv[4]: 'embedding'

argv[5]: ' <]   

<w W     נ < /  /  v   j#   09 / <G>. 캭   oN<w  <     Q  k  ;?# l   ߏ   \ ;  ; 'R<v  <     f  \  <

 1 =  ; ת; d    y 8 <
E      X
  [    O*<
 <f r  Z\  D+   *<Ҕ <d "        < U  <v[  { ;W ' )  b  rļ g<U мФ ;c  nzMޅ<7S  ? m Z'c   D<$ ;=AF;   <V

y<H  <n 

<_c <'

8:M 03 May 2023 18:39:38.662 # key 'auto-gpt:1' found in DB containing the following object:

8:M 03 May 2023 18:39:38.662 # Object type: 4

8:M 03 May 2023 18:39:38.662 # Object encoding: 2

8:M 03 May 2023 18:39:38.662 # Object refcount: 1

------ MODULES INFO OUTPUT ------

# graph_executing commands

# ReJSON_trace

ReJSON_trace:   0: redis_module::base_info_func

   1: rejson::__info_func

   2: modulesCollectInfo

             at /__w/redis-stack/redis-stack/redis/src/module.c:7100:9

   3: logModulesInfo

             at /__w/redis-stack/redis-stack/redis/src/debug.c:1624:22

   4: printCrashReport

             at /__w/redis-stack/redis-stack/redis/src/debug.c:1896:5

   5: sigsegvHandler

             at /__w/redis-stack/redis-stack/redis/src/debug.c:1878:5

   6: <unknown>

   7: _Z35FP32_InnerProductSIMD16Ext_SSE_implPKvS0_m

   8: _Z30FP32_InnerProductSIMD16Ext_SSEPKvS0_m

   9: _ZNK9HNSWIndexIffE11searchLayerEjPKvmm

  10: _ZN9HNSWIndexIffE12appendVectorEPKvm

  11: VecSimIndex_AddVector

  12: IndexerBulkAdd

  13: indexBulkFields

  14: Indexer_Process

  15: Indexer_Add

  16: Document_AddToIndexes

  17: IndexSpec_UpdateDoc

  18: Indexes_UpdateMatchingWithSchemaRules

  19: HashNotificationCallback

  20: moduleNotifyKeyspaceEvent

             at /__w/redis-stack/redis-stack/redis/src/module.c:5983:13

  21: notifyKeyspaceEvent

             at /__w/redis-stack/redis-stack/redis/src/notify.c:111:6

  22: hsetCommand

             at /__w/redis-stack/redis-stack/redis/src/t_hash.c:684:5

  23: call

             at /__w/redis-stack/redis-stack/redis/src/server.c:3750:5

  24: execCommand

             at /__w/redis-stack/redis-stack/redis/src/multi.c:240:13

  25: call

             at /__w/redis-stack/redis-stack/redis/src/server.c:3750:5

  26: processCommand

             at /__w/redis-stack/redis-stack/redis/src/server.c:4297:9

  27: processCommandAndResetClient

             at /__w/redis-stack/redis-stack/redis/src/networking.c:2105:9

  28: processInputBuffer

             at /__w/redis-stack/redis-stack/redis/src/networking.c:2206:17

  29: callHandler

             at /__w/redis-stack/redis-stack/redis/src/connhelpers.h:79:18

      connSocketEventHandler

             at /__w/redis-stack/redis-stack/redis/src/connection.c:295:14

  30: aeProcessEvents

             at /__w/redis-stack/redis-stack/redis/src/ae.c:427:17
      
  31: aeMain

             at /__w/redis-stack/redis-stack/redis/src/ae.c:487:9

  32: main

             at /__w/redis-stack/redis-stack/redis/src/server.c:6474:5

  33: __libc_start_main
      
  34: _start

# search_version

search_version:2.6.9

search_redis_version:6.2.12 - oss

# search_index

search_number_of_indexes:1

# search_fields_statistics

search_fields_text:Text=1

search_fields_vector:Vector=1,HSNW=1

# search_dialect_statistics

search_dialect_1:0

search_dialect_2:0

search_dialect_3:0

# search_runtime_configurations

search_concurrent_mode:OFF

search_enableGC:ON

search_minimal_term_prefix:2

search_maximal_prefix_expansions:200

search_query_timeout_ms:500

search_timeout_policy:return

search_cursor_read_size:1000

search_cursor_max_idle_time:300000

search_max_doc_table_size:1000000

search_max_search_results:10000

search_max_aggregate_results:10000

search_search_pool_size:20

search_index_pool_size:8

search_gc_scan_size:100

search_min_phonetic_term_length:3

------ FAST MEMORY TEST ------

8:M 03 May 2023 18:39:38.704 # Bio thread for job type #0 terminated

8:M 03 May 2023 18:39:38.705 # Bio thread for job type #1 terminated

8:M 03 May 2023 18:39:38.705 # Bio thread for job type #2 terminated

*** Preparing to test memory region 55f851c3a000 (2281472 bytes)

*** Preparing to test memory region 55f852f72000 (405504 bytes)

*** Preparing to test memory region 7fe7fd416000 (10485760 bytes)

*** Preparing to test memory region 7fe7fee00000 (14680064 bytes)

*** Preparing to test memory region 7fe7ffd80000 (2756608 bytes)

*** Preparing to test memory region 7fe804000000 (2097152 bytes)

*** Preparing to test memory region 7fe804400000 (8388608 bytes)

*** Preparing to test memory region 7fe804c00000 (4194304 bytes)

*** Preparing to test memory region 7fe8050cd000 (8388608 bytes)

*** Preparing to test memory region 7fe8058ce000 (8388608 bytes)

*** Preparing to test memory region 7fe8060cf000 (8388608 bytes)

*** Preparing to test memory region 7fe8068d0000 (8388608 bytes)

*** Preparing to test memory region 7fe80738c000 (8388608 bytes)

*** Preparing to test memory region 7fe807b8d000 (8388608 bytes)

*** Preparing to test memory region 7fe80838e000 (8388608 bytes)

*** Preparing to test memory region 7fe808b8f000 (8388608 bytes)

*** Preparing to test memory region 7fe809390000 (8388608 bytes)

*** Preparing to test memory region 7fe809b91000 (8388608 bytes)

*** Preparing to test memory region 7fe80a392000 (8388608 bytes)

*** Preparing to test memory region 7fe80ab93000 (8388608 bytes)

*** Preparing to test memory region 7fe80cac3000 (12288 bytes)

*** Preparing to test memory region 7fe80cac7000 (8388608 bytes)

*** Preparing to test memory region 7fe80d2c8000 (8388608 bytes)

*** Preparing to test memory region 7fe80dca7000 (12288 bytes)

*** Preparing to test memory region 7fe80dffd000 (12288 bytes)

*** Preparing to test memory region 7fe80e000000 (8388608 bytes)

*** Preparing to test memory region 7fe80e8ea000 (4096 bytes)

*** Preparing to test memory region 7fe80e948000 (24576 bytes)

*** Preparing to test memory region 7fe80eb3c000 (16384 bytes)

*** Preparing to test memory region 7fe80eb5f000 (16384 bytes)

*** Preparing to test memory region 7fe80ee36000 (16384 bytes)

*** Preparing to test memory region 7fe80f022000 (8192 bytes)

*** Preparing to test memory region 7fe80f055000 (4096 bytes)

.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O.O

Fast memory test PASSED, however your memory can still be broken. Please run a memory test for several hours if possible.

------ DUMPING CODE AROUND EIP ------

Symbol: _Z35FP32_InnerProductSIMD16Ext_SSE_implPKvS0_m (base: 0x7fe80de3ec50)

Module: /opt/redis-stack/lib/redisearch.so (base 0x7fe80dcaa000)

$ xxd -r -p /tmp/dump.hex /tmp/dump.bin

$ objdump --adjust-vma=0x7fe80de3ec50 -D -b binary -m i386:x86-64 /tmp/dump.bin

------

8:M 03 May 2023 18:39:40.846 # dump of function (hexdump of 141 bytes):

f30f1efa488d04974839c77373c5f057c90f1f8000000000c5f8101fc5e059064883c7404883c640c5f81067d0c5f8106fe0c5f81056f0c5f858c1c5d8594ed0c5f858c1c5d0594ee0c5f858c1c5f8104ff0c5f059cac5f058c84839f877b9c5f0c6c155c5fa58c1c5f015d1c5fa58d2c5f0c6c1ffc5ea58c0c3660f1f440000c5f857c0c366662e0f1f840000

=== REDIS BUG REPORT END. Make sure to include from START to END. ===

       Please report the crash by opening an issue on github:

           http://github.com/redis/redis/issues

  If a Redis module was involved, please open in the module's repo instead.

  Suspect RAM error? Use redis-server --test-memory to verify it.

  Some other issues could be detected by redis-server --check-system
Boostrix commented 1 year ago

This solved the issue for me:

github-actions[bot] commented 1 year ago

This issue has automatically been marked as stale because it has not had any activity in the last 50 days. You can unstale it by commenting or removing the label. Otherwise, this issue will be closed in 10 days.

github-actions[bot] commented 1 year ago

This issue was closed automatically because it has been stale for 10 days with no activity.