#musicbrainz

/

      • JoeLlama joined the channel
      • chirlu` has left the channel
      • LordSputnik joined the channel
      • CallerNo6 joined the channel
      • LordSputnik has left the channel
      • Nyanko-sensei prays to the ninjas of musicbrainz about the recovery of the usual service
      • Nyanko-sensei
        have to edit with the debug inspector on atm in case ajax posts fail
      • hibiscuskazeneko joined the channel
      • CatQuest joined the channel
      • JesseW joined the channel
      • STalKer-X_j joined the channel
      • KRSCuan joined the channel
      • kahu joined the channel
      • STalKer-X_j
        down again :x
      • hibiscuskazeneko
        so it's not just me
      • hopphopp joined the channel
      • STalKer-X_j
        nope
      • TheBikeGuitarist joined the channel
      • hibiscuskazeneko
        hello TheBikeGuitarist
      • TheBikeGuitarist
        hi hibiscuskazeneko
      • hibiscuskazeneko
        we're just passing time here since MB is slow as molasses
      • STalKer-X_j
        i will just go back to sleep :x
      • TheBikeGuitarist
        I've been polishing and waxing my bicycle six to eight hours every day the past two weeks. I do that about once every six years.
      • touched up paint etc.
      • most guitarists have big speakers with tiny wheels. My bicycle with the amp strapped to rear rack is like a tiny speaker with big wheels. It is a "riding amplifier" sort of like a riding lawnmower lol.
      • hibiscuskazeneko
        neat
      • do you power the amp by pedaling?
      • TheBikeGuitarist
        no, it has six AA batteries that last more than 20 hours loud enough to play with drums
      • Roland MicroCube amp.... really nice sounds... many options but I picked a sound I like and almost all my songs have that same setting
      • plus when you witness me perform on the bicycle live riding circles in front of you, you get a Doppler effect from the varying distances and directions of the sound
      • hibiscuskazeneko
        not like you can adjust it while riding, can you?
      • TheBikeGuitarist
        not safely really nope
      • hibiscuskazeneko
        didn't think so
      • TheBikeGuitarist
        but I never go fast, first gear all the time, so no big deal to stop and re-set the amp if I wanted to (but I don't....I like the sound I picked)
      • it is clean channel with some tone, very light reverb, and just the start of phase shifter for a slow sweep
      • pickup switch on guitar is the second from the front, makes the bridge and middle pickups together of the three I think
      • that's the tone of the bicycling guitarist past few years since I got the Roland amp
      • been playing that pickup switch position for decades though
      • sometimes my hand in sweeping windmills will accidentally knock the switch to bridge pickup...sometimes that adds to the song and makes it better
      • several of my youtube videos have that type of thing going on, where sounds "just happen" that are not planned
      • so maybe at a higher level of consciousness I *am* planning it lol, but there are no thoughts while I play...just music flowing through me and out my fingers
      • kurros joined the channel
      • bye for now have fun
      • hibiscuskazeneko
        see you
      • Lotheric joined the channel
      • CatQuest joined the channel
      • mezod joined the channel
      • Nyanko-sensei joined the channel
      • KRSCuan joined the channel
      • juhae joined the channel
      • juhae joined the channel
      • nikki is way too late to the conversation and most of the people who were talking at the time aren't even here any more D:
      • nikki
        anyway, I do have a script running to check urls and store info about it locally, it doesn't remove ones which appear to be broken from mb though
      • partly because some sites suck and will claim something is a 404 when it isn't really
      • I do have another script which I run from time to time to update urls which are redirecting to another sufficiently similar url though
      • some sites blocked me though :P
      • yeeeargh joined the channel
      • KRSCuan joined the channel
      • djinni` joined the channel
      • KRSCuan joined the channel
      • yeeeargh joined the channel
      • hopphopp joined the channel
      • JoeLlama joined the channel
      • ruaok joined the channel
      • Mineo joined the channel
      • STalKer-X_j
        ruaok: sup? :)
      • ruaok
        MB, for a change.
      • nikki
        shh, don't jinx it
      • STalKer-X_j
        ruaok since when? :D
      • hibiscuskazeneko joined the channel
      • bitstorm joined the channel
      • bitstorm
        does anyone know where musicbrainz picard pulls the genre tags from when you enable "folksonomy tags"?
      • there's a bunch I want to fix
      • I cant see anywhere to amend them on the MB website so guessing their external?
      • ruaok
        I’m going to build some new indexes while things are quiet. (no recording indexes though)
      • hopphopp
        what do you say about the title of this album? http://musicbrainz.org/release/2c0684b5-6137-4d...
      • bitstorm_ joined the channel
      • one track is written using japanese, hence i think the title of the album also should be “Hearts 日本”
      • rather than Hearts Japan EP
      • murk joined the channel
      • simukis_ joined the channel
      • ruaok
        nope. started index builing and load shot to 100.
      • no indexes, sorry.
      • mb-chat-logger
        New post: blog: Postgres troubles <http://blog.musicbrainz.org/2015/03/15/postgres...;
      • dns53 joined the channel
      • dns53
        one thing about postgres, do you have the autovaccum daemon enabled / have you analysed the database recently?
      • Nyanko-sensei joined the channel
      • STalKer-X_j
        ruaok looks like nginx stats are off? o.o
      • ruaok
        dns53: autovacuum is enabled.
      • dns53
        well my quick guess is the statistics are wrong and decides to choose the wrong optimisations ie wrong index or wrong order in performing actions
      • you can fix this by analysing the table again so it has a better guess of what order things should e done
      • doing a full vacuume will fix this but this locks the database so it has consiquences
      • you could analyze each table one by one to make sure everything is up to date
      • but this uses a lot of cpu / io so it will make things worse before it gets better
      • ruaok
        we’d do a full downtime for that.
      • worth tryinng.
      • dns53
        I am a dba but i work in oracle so i know the general principals but i'm not an expert in postgres
      • so what can happen is the database needs to join two tables, does it look at the first table and join the results to the second, or look at the second and join to the first
      • the difference can be big, and the database uses statistics to make a guess at what option is most likely better
      • working out what is better could theoretically be calculated but this could take longer than running the query so it has to make educated guesses
      • if you have 31+ joins it would take more than the heat death of the universe to work out what of the possible combinations of order would be better
      • ruaok
        understood. but this has never happened to us before — why now??
      • dns53
        any database can go the same way, it may have now decided to use or not use an index that it did before
      • say you have a table with 1000000 rows and you delete all but 10, if the statistics are wrong it will still think the rows are still there
      • hibiscuskazeneko joined the channel
      • ruaok
        dns53: understood.
      • but we haven’t made any drastic changes like that.
      • still, I understand that these hidden thresholds are everywhere
      • CatQuest joined the channel
      • hibiscuskazeneko joined the channel
      • ToM` has left the channel
      • guigui_ joined the channel
      • guigui_
        hello guys
      • Junior joined the channel
      • im having a problem with accessing musicbrainzvm:8080 from the virtualbox-2014-05-14
      • searching on musicbrainzvm:5000 works perfectly
      • on port 8080 i only managed to get it worked localy
      • i tried to change jetty to listen to all traffic but doesnt seem to work
      • do u have any idea what i could do wrong
      • and so i can access 8080 from my host?
      • hibiscuskazenek1 joined the channel
      • KRSCuan
        I could use some votes on http://musicbrainz.org/edit/32140490 and http://musicbrainz.org/artist/28f5ef49-1192-480... so I can finish cleaning up these artists.
      • guigui_
        any help really really appreciated :)
      • Mineo
        I think you need to configure port forwarding from the vm to your host system as well, otherwise jetty can listen as much as it likes but the hypervisor doesn't forward any packets to it
      • hopphopp
        does anyone know why i can’t add new releases? get this error message Caught exception in MusicBrainz::Server::Controller::ReleaseEditor->add "CGI param clash for mediums.0.track.-1.name=-1 at lib/MusicBrainz/Server/Controller/ReleaseEditor.pm line 111"
      • using the add cluster as release plugin for picard
      • guigui_
        ok mineo i will check that weird that port 5000 is working though
      • nikki
        that seems like a problem with the plugin
      • I'm guessing the files have no track numbers or something
      • Mineo
        guigui_: yes, that's preconfigured
      • guigui_
        :)
      • ah true
      • i see it
      • sorry
      • not an expert
      • oh mineo
      • thank you so much
      • its fixed
      • how come it is not preconfigured for 8080
      • too?
      • could make sense
      • thx again u made my sunday :P
      • hopphopp
        nikki: hmm, they all have 0 as track number
      • Freso
        hibiscuskazeneko | now to check for more (I know of a few other cities that stretch across the county line) - please report these at http://tickets.musicbrainz.org/browse/AREQ :)
      • Zastai joined the channel
      • hibiscuskazenek1
        They're already in the database: are tickets even necessary?
      • nikki
        the ticket tracker is for tracking issues in general, not only for requesting new things :)
      • plus the tickets will be there to remind people later if they don't have time to deal with it there and then
      • Freso
        ^