Can't start an action

How do i stop currently running tasks ?

Screenshot 2025-01-14 at 8.14.58 PM

What running tasks are you talking about?

Nowhere in the USER interface baserow tells the user what tasks is it running, how do i know ?

So where do you see this error message and what did you do before that?

Now here are the logs that i see appearing in real time when i start the task and when it shows this error notification.

2025-01-16 05:31:56 [2025-01-16 10:31:56,016: ERROR/ForkPoolWorker-6] Task baserow.core.jobs.tasks.run_async_job[c4ddfa4b-0ee4-4d72-891a-1edd077b35bb] raised unexpected: DataError(‘value too long for type character varying(255)\n’)
2025-01-16 05:31:56 Traceback (most recent call last):
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 105, in _execute
2025-01-16 05:31:56 return self.cursor.execute(sql, params)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 psycopg2.errors.StringDataRightTruncation: value too long for type character varying(255)
2025-01-16 05:31:56
2025-01-16 05:31:56
2025-01-16 05:31:56 The above exception was the direct cause of the following exception:
2025-01-16 05:31:56
2025-01-16 05:31:56 Traceback (most recent call last):
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/celery/app/trace.py”, line 453, in trace_task
2025-01-16 05:31:56 R = retval = fun(*args, **kwargs)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/celery/app/trace.py”, line 736, in protected_call
2025-01-16 05:31:56 return self.run(*args, **kwargs)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/core/jobs/tasks.py”, line 33, in run_async_job
2025-01-16 05:31:56 JobHandler.run(job)
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/core/jobs/handler.py”, line 73, in run
2025-01-16 05:31:56 out = job_type.run(job, progress)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/table/job_types.py”, line 62, in run
2025-01-16 05:31:56 new_table_clone = action_type_registry.get_by_type(DuplicateTableActionType).do(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/table/actions.py”, line 336, in do
2025-01-16 05:31:56 new_table_clone = TableHandler().duplicate_table(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/core/telemetry/utils.py”, line 72, in _wrapper
2025-01-16 05:31:56 raise ex
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/core/telemetry/utils.py”, line 68, in _wrapper
2025-01-16 05:31:56 result = wrapped_func(*args, **kwargs)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/table/handler.py”, line 895, in duplicate_table
2025-01-16 05:31:56 imported_tables = database_type.import_tables_serialized(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/application_types.py”, line 518, in import_tables_serialized
2025-01-16 05:31:56 self._import_table_views(serialized_table, id_mapping, files_zip, progress)
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/application_types.py”, line 856, in _import_table_views
2025-01-16 05:31:56 view_type.import_serialized(table, serialized_view, id_mapping, files_zip)
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/views/view_types.py”, line 153, in import_serialized
2025-01-16 05:31:56 grid_view = super().import_serialized(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/backend/src/baserow/contrib/database/views/registries.py”, line 426, in import_serialized
2025-01-16 05:31:56 view_filter_object = ViewFilter.objects.create(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/manager.py”, line 87, in manager_method
2025-01-16 05:31:56 return getattr(self.get_queryset(), name)(*args, **kwargs)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/query.py”, line 679, in create
2025-01-16 05:31:56 obj.save(force_insert=True, using=self.db)
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 822, in save
2025-01-16 05:31:56 self.save_base(
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 909, in save_base
2025-01-16 05:31:56 updated = self._save_table(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 1071, in _save_table
2025-01-16 05:31:56 results = self._do_insert(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 1112, in _do_insert
2025-01-16 05:31:56 return manager._insert(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/manager.py”, line 87, in manager_method
2025-01-16 05:31:56 return getattr(self.get_queryset(), name)(*args, **kwargs)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/query.py”, line 1847, in _insert
2025-01-16 05:31:56 return query.get_compiler(using=using).execute_sql(returning_fields)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/sql/compiler.py”, line 1823, in execute_sql
2025-01-16 05:31:56 cursor.execute(sql, params)
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 122, in execute
2025-01-16 05:31:56 return super().execute(sql, params)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 79, in execute
2025-01-16 05:31:56 return self._execute_with_wrappers(
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 92, in _execute_with_wrappers
2025-01-16 05:31:56 return executor(sql, params, many, context)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 100, in _execute
2025-01-16 05:31:56 with self.db.wrap_database_errors:
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/utils.py”, line 91, in exit
2025-01-16 05:31:56 raise dj_exc_value.with_traceback(traceback) from exc_value
2025-01-16 05:31:56 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 105, in _execute
2025-01-16 05:31:56 return self.cursor.execute(sql, params)
2025-01-16 05:31:56 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:31:56 django.db.utils.DataError: value too long for type character varying(255)
2025-01-16 05:31:56
2025-01-16 05:32:00 [2025-01-16 10:32:00,031: INFO/MainProcess] Task baserow.core.notifications.tasks.beat_send_instant_notifications_summary_by_email[9cb4a1fb-03fb-489a-8eb9-f6d972bb6c8d] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,037: INFO/ForkPoolWorker-6] Task baserow.core.notifications.tasks.beat_send_instant_notifications_summary_by_email[9cb4a1fb-03fb-489a-8eb9-f6d972bb6c8d] succeeded in 0.003842166996037122s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,038: INFO/MainProcess] Task baserow.core.notifications.tasks.singleton_send_instant_notifications_summary_by_email[871c8f39-fb96-4ee7-96eb-65f45f307172] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,053: INFO/ForkPoolWorker-6] Task baserow.core.notifications.tasks.singleton_send_instant_notifications_summary_by_email[871c8f39-fb96-4ee7-96eb-65f45f307172] succeeded in 0.01388420800503809s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,188: INFO/MainProcess] Task baserow.core.action.tasks.cleanup_old_actions[06d00941-dbcc-4a58-8919-0a2aeae5fa33] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,198: WARNING/ForkPoolWorker-6] 67|2025-01-16 10:32:00.198|INFO|baserow.core.action.handler:clean_up_old_undoable_actions:306 - Cleaned up 0 actions.
2025-01-16 05:32:00 [2025-01-16 10:32:00,199: INFO/ForkPoolWorker-6] Task baserow.core.action.tasks.cleanup_old_actions[06d00941-dbcc-4a58-8919-0a2aeae5fa33] succeeded in 0.009158082997601014s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,201: INFO/MainProcess] Task baserow.core.import_export.tasks.delete_marked_import_export_resources[67dbe243-9fc0-4338-9ca4-529954932bfd] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,210: INFO/ForkPoolWorker-6] Task baserow.core.import_export.tasks.delete_marked_import_export_resources[67dbe243-9fc0-4338-9ca4-529954932bfd] succeeded in 0.007336332993872929s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,257: INFO/MainProcess] Task baserow.core.import_export.tasks.mark_import_export_resources_for_deletion[cf309c7f-7dd2-4def-8958-6f8da60611b3] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,262: INFO/ForkPoolWorker-6] Task baserow.core.import_export.tasks.mark_import_export_resources_for_deletion[cf309c7f-7dd2-4def-8958-6f8da60611b3] succeeded in 0.004243708994181361s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,268: INFO/MainProcess] Task baserow.core.jobs.tasks.clean_up_jobs[9acdaab6-eaad-4b88-9300-a0e1be3f28b2] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,274: INFO/ForkPoolWorker-6] Task baserow.core.jobs.tasks.clean_up_jobs[9acdaab6-eaad-4b88-9300-a0e1be3f28b2] succeeded in 0.004573707999952603s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,291: INFO/MainProcess] Task baserow.core.trash.tasks.mark_old_trash_for_permanent_deletion[aa6add1e-a57a-46d8-befb-cb12e5201ef5] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,296: WARNING/ForkPoolWorker-6] 67|2025-01-16 10:32:00.296|INFO|baserow.core.trash.handler:mark_old_trash_for_permanent_deletion:223 - Successfully marked 0 old trash items for deletion as they were older than 72 hours.
2025-01-16 05:32:00 [2025-01-16 10:32:00,296: INFO/ForkPoolWorker-6] Task baserow.core.trash.tasks.mark_old_trash_for_permanent_deletion[aa6add1e-a57a-46d8-befb-cb12e5201ef5] succeeded in 0.004597999999532476s: None
2025-01-16 05:32:00 [2025-01-16 10:32:00,298: INFO/MainProcess] Task baserow.core.trash.tasks.permanently_delete_marked_trash[db6449f1-8200-4c99-96b5-ae771dd0024e] received
2025-01-16 05:32:00 [2025-01-16 10:32:00,304: WARNING/ForkPoolWorker-6] 67|2025-01-16 10:32:00.303|INFO|baserow.core.trash.handler:permanently_delete_marked_trash:305 - Successfully deleted 0 trash entries and their associated trashed items.
2025-01-16 05:32:00 [2025-01-16 10:32:00,304: INFO/ForkPoolWorker-6] Task baserow.core.trash.tasks.permanently_delete_marked_trash[db6449f1-8200-4c99-96b5-ae771dd0024e] succeeded in 0.004848625001613982s: None

== RE-TESTING IT SECOND TIME - =======

2025-01-16 05:33:49 [2025-01-16 10:33:49,814: INFO/MainProcess] Task baserow.core.jobs.tasks.run_async_job[0b39c7dc-825c-41fd-b5eb-59a5b4ea4a63] received
2025-01-16 05:33:54 [2025-01-16 10:33:54,337: ERROR/ForkPoolWorker-6] Task baserow.core.jobs.tasks.run_async_job[0b39c7dc-825c-41fd-b5eb-59a5b4ea4a63] raised unexpected: DataError(‘value too long for type character varying(255)\n’)
2025-01-16 05:33:54 Traceback (most recent call last):
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 105, in _execute
2025-01-16 05:33:54 return self.cursor.execute(sql, params)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 psycopg2.errors.StringDataRightTruncation: value too long for type character varying(255)
2025-01-16 05:33:54
2025-01-16 05:33:54
2025-01-16 05:33:54 The above exception was the direct cause of the following exception:
2025-01-16 05:33:54
2025-01-16 05:33:54 Traceback (most recent call last):
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/celery/app/trace.py”, line 453, in trace_task
2025-01-16 05:33:54 R = retval = fun(*args, **kwargs)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/celery/app/trace.py”, line 736, in protected_call
2025-01-16 05:33:54 return self.run(*args, **kwargs)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/core/jobs/tasks.py”, line 33, in run_async_job
2025-01-16 05:33:54 JobHandler.run(job)
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/core/jobs/handler.py”, line 73, in run
2025-01-16 05:33:54 out = job_type.run(job, progress)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/table/job_types.py”, line 62, in run
2025-01-16 05:33:54 new_table_clone = action_type_registry.get_by_type(DuplicateTableActionType).do(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/table/actions.py”, line 336, in do
2025-01-16 05:33:54 new_table_clone = TableHandler().duplicate_table(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/core/telemetry/utils.py”, line 72, in _wrapper
2025-01-16 05:33:54 raise ex
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/core/telemetry/utils.py”, line 68, in _wrapper
2025-01-16 05:33:54 result = wrapped_func(*args, **kwargs)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/table/handler.py”, line 895, in duplicate_table
2025-01-16 05:33:54 imported_tables = database_type.import_tables_serialized(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/application_types.py”, line 518, in import_tables_serialized
2025-01-16 05:33:54 self._import_table_views(serialized_table, id_mapping, files_zip, progress)
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/application_types.py”, line 856, in _import_table_views
2025-01-16 05:33:54 view_type.import_serialized(table, serialized_view, id_mapping, files_zip)
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/views/view_types.py”, line 153, in import_serialized
2025-01-16 05:33:54 grid_view = super().import_serialized(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/backend/src/baserow/contrib/database/views/registries.py”, line 426, in import_serialized
2025-01-16 05:33:54 view_filter_object = ViewFilter.objects.create(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/manager.py”, line 87, in manager_method
2025-01-16 05:33:54 return getattr(self.get_queryset(), name)(*args, **kwargs)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/query.py”, line 679, in create
2025-01-16 05:33:54 obj.save(force_insert=True, using=self.db)
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 822, in save
2025-01-16 05:33:54 self.save_base(
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 909, in save_base
2025-01-16 05:33:54 updated = self._save_table(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 1071, in _save_table
2025-01-16 05:33:54 results = self._do_insert(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/base.py”, line 1112, in _do_insert
2025-01-16 05:33:54 return manager._insert(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/manager.py”, line 87, in manager_method
2025-01-16 05:33:54 return getattr(self.get_queryset(), name)(*args, **kwargs)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/query.py”, line 1847, in _insert
2025-01-16 05:33:54 return query.get_compiler(using=using).execute_sql(returning_fields)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/models/sql/compiler.py”, line 1823, in execute_sql
2025-01-16 05:33:54 cursor.execute(sql, params)
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 122, in execute
2025-01-16 05:33:54 return super().execute(sql, params)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 79, in execute
2025-01-16 05:33:54 return self._execute_with_wrappers(
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 92, in _execute_with_wrappers
2025-01-16 05:33:54 return executor(sql, params, many, context)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 100, in _execute
2025-01-16 05:33:54 with self.db.wrap_database_errors:
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/utils.py”, line 91, in exit
2025-01-16 05:33:54 raise dj_exc_value.with_traceback(traceback) from exc_value
2025-01-16 05:33:54 File “/baserow/venv/lib/python3.11/site-packages/django/db/backends/utils.py”, line 105, in _execute
2025-01-16 05:33:54 return self.cursor.execute(sql, params)
2025-01-16 05:33:54 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2025-01-16 05:33:54 django.db.utils.DataError: value too long for type character varying(255)
2025-01-16 05:33:54
2025-01-16 05:34:00 [2025-01-16 10:34:00,027: INFO/MainProcess] Task baserow.core.notifications.tasks.beat_send_instant_notifications_summary_by_email[739663b6-babb-4ff8-81c6-224cc9490ff8] received
2025-01-16 05:34:00 [2025-01-16 10:34:00,030: INFO/ForkPoolWorker-6] Task baserow.core.notifications.tasks.beat_send_instant_notifications_summary_by_email[739663b6-babb-4ff8-81c6-224cc9490ff8] succeeded in 0.0014950839977245778s: None
2025-01-16 05:34:00 [2025-01-16 10:34:00,030: INFO/MainProcess] Task baserow.core.notifications.tasks.singleton_send_instant_notifications_summary_by_email[f33e13ff-8181-4765-9b65-f96a262a9747] received
2025-01-16 05:34:00 [2025-01-16 10:34:00,042: INFO/ForkPoolWorker-6] Task baserow.core.notifications.tasks.singleton_send_instant_notifications_summary_by_email[f33e13ff-8181-4765-9b65-f96a262a9747] succeeded in 0.010505916994588915s: None

Ok so the error is psycopg2.errors.StringDataRightTruncation: value too long for type character varying(255) produced while duplicating table caused by a view filter that can’t be created because some string value is too long.

Could you provide some information about the filters you have in the original table perhaps?

Which string value is too long? If it’s too long for Baserow to handle, why didn’t it notify the user in the UI when they were entering the value?

Are you going to report this as bug ?

This might very well be a bug somewhere in filter handling. However at the moment it is not clear what it is caused by so I cannot submit a bug report yet. That’s why I am asking for more details.

I’m happy to share my screen with you so you can get what you need to file the bug. Let me know