Code Monkey home page Code Monkey logo

Comments (8)

helioshk avatar helioshk commented on June 28, 2024

With the recent patches it seems to work using python3.9, many thanks!

from digiskimmer.

lazywalker avatar lazywalker commented on June 28, 2024

glad it helps 👍

from digiskimmer.

helioshk avatar helioshk commented on June 28, 2024

I don't know if it is related to this change. Once or twice a day it stops uploading to pskreporter. Only when I stop it (ctrl-c), it uploads a batch of several thousand spots.

from digiskimmer.

lazywalker avatar lazywalker commented on June 28, 2024

@helioshk is there a way to reproduce the issue? me at debian/testing latest update(with wsjtx 2.3.0-rc2), running 3 different sites with 39 channels simultaneously, all good for a week now.

here's my settings:

TMP_PATH = '/dev/shm/digiskr'
LOG_SPOTS = True
LOG_TO_FILE = True
DEBUG = False

DECODER_QUEUE = {
        'maxsize': 150,
        'workers': 4
     }

...

from digiskimmer.

helioshk avatar helioshk commented on June 28, 2024

It is not reproducible unfortunately and it hasn't happened anymore since 36 hours. I don't know if it is relevant, but my PC is slow and sometimes it can't complete decoding the queue in time.
Once it is in the state where it doesn't upload to pskreporter anymore, there is no more message about attempts to upload, only the decoding continues.

I use the settings from the example file:

TMP_PATH = './tmp/digiskr/' 
LOG_PATH = './log/'
LOG_TO_FILE = False
LOG_SPOTS = False   

DECODER_QUEUE = {
    'maxsize': 10,
    'workers': 3
}

from digiskimmer.

lazywalker avatar lazywalker commented on June 28, 2024

here is some tricks for machine that not good enough:

  • use mem-disk for tmp_path, this will increase io speed especially for old PC
TMP_PATH = '/dev/shm/digiskr'
  • increasing the maxsize of queue with workers number decreased, will save some of your cpu cost
DECODER_QUEUE = {
    'maxsize': 30,
    'workers': 2
}

from digiskimmer.

helioshk avatar helioshk commented on June 28, 2024

I think I can reproduce the issue.
If the internet connection is interrupted (I use WiFi) for a while, it will not resume uploading after internet access is available again.

from digiskimmer.

lazywalker avatar lazywalker commented on June 28, 2024

I think I can reproduce the issue.
If the internet connection is interrupted (I use WiFi) for a while, it will not resume uploading after internet access is available again.

Thanks for the information, please referring to this issue #9

from digiskimmer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.