2,042 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
80
views
Rails App, Auto loading files during initiliase phase
I have a Rails 8 app that is pretty bare boned.
I'm just setting up my dependency injection container, which registers relevant services here at:
config/initializer/command_bus.rb
The issue is that I'...
1
vote
0
answers
57
views
Why doesn't my GD script with autoloads post its variables?
When I use (Morton.morton_statetest) in another script, It gives me 0, and even if I put a print in Morton script and If I put an print in the other script, it gives me two values different, wit out ...
0
votes
1
answer
100
views
How to handle incompatible versions of PHP interfaces?
I have a PHP application which uses the \Psr\Log\LoggerInterface interface and classes that implement that interface. My application can be configured to authenticate users against a Joomla ...
1
vote
1
answer
110
views
Local composer dev repo namespacing issue
I am using Composer version 2.2.25
Per https://getcomposer.org/doc/05-repositories.md#path, I have this structure:
├── path
│ └── to
│ └── composer_stuff
│ └── compiled
│ ...
1
vote
1
answer
62
views
How to configure autoload to integrate external PHP class
In my custom extension I am trying to integrate an external PHP lib. I get the following error message in TYPO3 v12.4:
Expected to find class "Brevo\Client\Api\AccountApi" in file
"/...
0
votes
1
answer
92
views
PHP autoloading with multiple third-party libraries [closed]
I'm writing a plugin that uses a few third-party libraries (one from a long-abandoned repo that I'm modifying). Library A uses Library B, and my code uses both.
In Library A are 50-odd files with ...
0
votes
1
answer
38
views
autoloader check for duplicates
Does the autoloader in Databricks load the same file again if the file is loaded from another path ?
Or does it load the same file if the file is put again in the same directory after some time ?
0
votes
0
answers
145
views
Databricks Autoloader fails with AWS SQS
I have texts files in an AWS S3 bucket and reading with pyspark with autoloader. SQS and SNS is set but when I use .option("cloudFiles.useNotifications", True)I get access denied error. ...
3
votes
1
answer
266
views
Service not found the container inside "\ServiceLocator" is a smaller service locator that only knows about the "kernel"
Because I want my applications to follow some kind of DDD structure, I want my Controller, Entity, Repository, Form etc to sit within a specific directory. For example: src/Appication/Dealer/...
0
votes
2
answers
270
views
Does cloudFiles.backfillInterval Reprocess Every File in Source Every Time Autoloader Runs?
Im struggling to understand how to control the backfill process baked into Autoloader:
https://docs.databricks.com/en/ingestion/cloud-object-storage/auto-loader/production.html#trigger-regular-...
0
votes
1
answer
242
views
Why is schemaEvolution not working in databricks autoloader?
I'm reading csv files and processing them daily so I can append the data to my bronze layer in databricks using autolader. The code looks like this:
def run_autoloader(table_name, checkpoint_path, ...
2
votes
2
answers
157
views
How to "require" a LUA script within a Spoon-package?
We have base LUA file ~/.hammerspoon/init.lua which can load a spoon package:
hs.loadSpoon("Foo")
Now we have our package file init.lua by path:
~/.hammerspoon/Spoons/Foo.Spoon/init.lua
It ...
1
vote
0
answers
217
views
Setup Databricks Autoloader Event Grid Subscription with No Expiry on TTL
I intend to use Autoloader in file notification mode. I want to control the naming of the event grid subscription and storage queues, so I am using the module recommended in the official docs to ...
0
votes
1
answer
94
views
PHP Autoloading Issue with Incorrect or Duplicate Namespaces in GLPI Project: Traits Not Found Due to Misconfigured PSR-4 Autoloading
PHP Autoloading Issue with Incorrect or Duplicate Namespaces in GLPI Project: Traits Not Found Due to Misconfigured PSR-4 Autoloading
I am working on a GLPI in and encountering persistent PHP errors ...
0
votes
0
answers
57
views
Rails nested classes autoload issue
I've created new simple Rails 6 application for test reasons.
In config/environments/development.rb
...
config.cache_classes = false
config.eager_load = false
...
/app/controllers/articles_controller....