Giter Club home page Giter Club logo

ingestify's People

Contributors

koenvo avatar koenvossen avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

ingestify's Issues

StatsbombGithub invalid json response

StatsbombGithub can return:

Make sure responses is checked, and possible also if response contains valid json


<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
  <head>
    <title>503 between bytes timeout</title>
  </head>
  <body>
    <h1>Error 503 between bytes timeout</h1>
    <p>between bytes timeout</p>
    <h3>Error 54113</h3>
    <p>Details: cache-ams21069-AMS 1691565538 962269883</p>
    <hr>
    <p>Varnish cache server</p>
  </body>
</html>

Process updates on windows not working

On Windows we use the spawn start method for multiprocessing Pool. This somehow breaks the logger used in run_task

ChatGPT:

import logging
import logging.handlers
import multiprocessing
import os

def worker_process(q, i):
    qh = logging.handlers.QueueHandler(q)
    root = logging.getLogger()
    root.addHandler(qh)
    root.setLevel(logging.INFO)

    logging.info(f'Hello from worker {i}')

def logger_thread(q):
    while True:
        try:
            record = q.get()
            if record is None:  # We send this as a sentinel to tell the listener to quit.
                break
            logger = logging.getLogger(record.name)
            logger.handle(record)  # No level or filter logic applied - just do it!
        except Exception:
            import sys, traceback
            print('Problem:', file=sys.stderr)
            traceback.print_exc(file=sys.stderr)

def main():
    q = multiprocessing.Queue()

    log_thread = multiprocessing.Process(target=logger_thread, args=(q,))
    log_thread.start()

    workers = []
    for i in range(5):
        wp = multiprocessing.Process(target=worker_process, args=(q, i))
        workers.append(wp)
        wp.start()

    for wp in workers:
        wp.join()

    # Tell the logging server to shut down
    q.put(None)
    log_thread.join()

if __name__ == '__main__':
    main()

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.