Licensing

Licensing

My Fluent run terminated with a SIGBUS error on our Linux cluster while writing the .dat file. The full error was: Node 8: Process 5974: Received signal SIGBUS. What can I do to resolve this?

    • FAQFAQ
      Participant

      SIGBUS errors usually occur when a process is trying to access memory that the CPU cannot physically address. One resolution to this was to modify the docker container parameter that controls the memory usage of a container. By default, a container has no resource constraints and can use as much of a given resource as the host’s kernel scheduler allows. Docker provides ways to control how much memory, or CPU a container can use, setting runtime configuration flags of the docker run command. For more information, please see: https://docs.docker.com/config/containers/resource_constraints/